aboutsummaryrefslogtreecommitdiff
path: root/curl-style.el
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-12-16 09:53:39 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-12-16 09:53:39 +0000
commit979ba8a8b525950f0c1a830c37d8d996790f2aba (patch)
treed4537dc4b90c2e7a76f251ac974c2fc49471333d /curl-style.el
parentcd9dea3091ce1e0ccc2dafd8ad7f36362a5b66da (diff)
downloadgnurl-979ba8a8b525950f0c1a830c37d8d996790f2aba.tar.gz
gnurl-979ba8a8b525950f0c1a830c37d8d996790f2aba.tar.bz2
gnurl-979ba8a8b525950f0c1a830c37d8d996790f2aba.zip
add off_t as a recognized type for font-locking
Diffstat (limited to 'curl-style.el')
-rw-r--r--curl-style.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/curl-style.el b/curl-style.el
index a5a65923b..ad2e91b00 100644
--- a/curl-style.el
+++ b/curl-style.el
@@ -37,7 +37,7 @@
(setq tab-width 8
indent-tabs-mode nil ; Use spaces. Not tabs.
comment-column 40
- c-font-lock-extra-types (append '("bool" "CURL" "CURLcode" "ssize_t" "size_t" "socklen_t" "fd_set" "time_t"))
+ c-font-lock-extra-types (append '("bool" "CURL" "CURLcode" "ssize_t" "size_t" "socklen_t" "fd_set" "time_t" "off_t"))
)
;; keybindings for C, C++, and Objective-C. We can put these in
;; c-mode-base-map because of inheritance ...