diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-03-12 08:11:24 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-03-12 08:11:24 +0000 |
commit | 073448e0ea3d4ba4409be45ea5ebc58860bd9995 (patch) | |
tree | 7e456e70d7788c33320083220b06bf2f67e2ff9a | |
parent | f136f435b5961ae00de700d7ddb7b8f3b53ca986 (diff) | |
download | curl-073448e0ea3d4ba4409be45ea5ebc58860bd9995.tar.gz |
support a few more common typedefs
-rw-r--r-- | curl-style.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/curl-style.el b/curl-style.el index db47dd2d8..247cc9daa 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")) + c-font-lock-extra-types (append '("bool" "CURL" "CURLcode" "ssize_t" "size_t" "socklen_t" "fd_set")) ) ;; keybindings for C, C++, and Objective-C. We can put these in ;; c-mode-base-map because of inheritance ... |