summaryrefslogtreecommitdiff
path: root/curl-style.el
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-05-02 02:37:32 +0000
committerYang Tse <yangsita@gmail.com>2009-05-02 02:37:32 +0000
commit9137e717b04644592b9b527839470337fdd9f44d (patch)
treee7b9af9f3d06915f4900238ff4f5a077fb05810b /curl-style.el
parent80186aa7f44ed5155665d96336b508403b3d4a03 (diff)
downloadcurl-9137e717b04644592b9b527839470337fdd9f44d.tar.gz
Use build-time configured curl_socklen_t instead of socklen_t
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 25bcd1a37..1cb24f3b9 100644
--- a/curl-style.el
+++ b/curl-style.el
@@ -35,7 +35,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" "curl_off_t" "curl_socket_t" "in_addr_t" "CURLSHcode" "CURLMcode" "Curl_addrinfo"))
+ c-font-lock-extra-types (append '("bool" "CURL" "CURLcode" "ssize_t" "size_t" "curl_socklen_t" "fd_set" "time_t" "curl_off_t" "curl_socket_t" "in_addr_t" "CURLSHcode" "CURLMcode" "Curl_addrinfo"))
)
;; keybindings for C, C++, and Objective-C. We can put these in
;; c-mode-base-map because of inheritance ...