From: Daniel Stenberg Date: Wed, 5 Sep 2001 06:55:08 +0000 (+0000) Subject: emacs lisp setup for hacking curl code X-Git-Tag: curl-7_9~79 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b31a54c46ad80f626a6f36d4c620f0cabe3ded82;p=thirdparty%2Fcurl.git emacs lisp setup for hacking curl code --- diff --git a/curl-mode.el b/curl-mode.el new file mode 100644 index 0000000000..6a51708b9c --- /dev/null +++ b/curl-mode.el @@ -0,0 +1,21 @@ +;;;; Emacs Lisp help for writing curl code. ;;;; + +;;; In C files, put something like this to load this file automatically: +;; +;; /* ----------------------------------------------------------------- +;; * local variables: +;; * eval: (load-file "../curl-mode.el") +;; * end: +;; */ +;; +;; (note: make sure to get the path right in the argument to load-file). + + +;;; The curl hacker's C conventions + +;;; we use intent-level 2 +(setq c-basic-offset 2) +;;; never ever use tabs to indent! +(setq indent-tabs-mode nil) +;;; I like this, stolen from Subversion! ;-) +(setq angry-mob-with-torches-and-pitchforks t)