Nico Baggus added more error codes to the VMS stuff.
[platform/upstream/curl.git] / curl-mode.el
1 ;;;; Emacs Lisp help for writing curl code. ;;;;
2
3 ;;; In C files, put something like this to load this file automatically:
4 ;;
5 ;;   /* -----------------------------------------------------------------
6 ;;    * local variables:
7 ;;    * eval: (load-file "../curl-mode.el")
8 ;;    * end:
9 ;;    */
10 ;;
11 ;; (note: make sure to get the path right in the argument to load-file).
12
13 \f
14 ;;; The curl hacker's C conventions
15
16 ;;; we use intent-level 2
17 (setq c-basic-offset 2)
18 ;;; never ever use tabs to indent!
19 (setq indent-tabs-mode nil)
20 ;;; I like this, stolen from Subversion! ;-)
21 (setq angry-mob-with-torches-and-pitchforks t)