chiark / gitweb /
emacs: load ian-local.el if it exists; load private.el if it exists
[ian-dotfiles.git] / home / emacs / ian.el
1 ; This is my real emacs start-up file (for chiark).
2
3
4 (defalias 'perl-mode 'cperl-mode)
5 (setq cperl-invalid-face nil
6       cperl-indent-level 4
7       cperl-continued-statement-offset 4)
8
9 (make-variable-buffer-local 'indent-line-function)
10 ; Un-disable narrow and eval-expression
11 (put 'narrow-to-region 'disabled nil)
12 (put 'eval-expression 'disabled nil)
13 (standard-display-european t)
14 ;
15 (setq browse-url-netscape-program "mozilla")
16 (setq common-lisp-hyperspec-root "/usr/share/doc/hyperspec/")
17 ;
18 ; Make sure we don't disturb links or change ownership, use numbers
19 (setq backup-by-copying-when-mismatch t)
20 (setq backup-by-copying-when-linked t)
21 ;(setq version-control t
22 ;      kept-new-versions 4
23 ;      kept-old-versions 4
24 ;      trim-versions-without-asking t)
25 ;
26 ; Various one-liners
27 (setq require-final-newline "ask")
28 (if (string= window-system 'x) (load-library "ian-x"))
29 (load-library "ian-aliases")
30 ; (load-library "auto-pgp")
31 ; (load-library "debian-changelog-mode")
32 ; (if (string= (getenv "TERM") "bbcb32") (setq term-file-prefix nil))
33 ; (setq explicit-shell-file-name "/usr/local/bin/tcsh")
34 (setq inhibit-local-variables t)
35 (setq enable-local-variables 'ask-me)
36 (setq enable-recursive-minibuffers t)
37 (setq compile-command "make")
38 (setq next-line-add-newlines t)
39 (setq diff-switches "-u")
40 (setq line-move-visual nil)
41 (display-time)
42 ;
43 (set-variable 'search-repeat-char 28)
44 (set-fringe-mode (cons 0 nil))
45 (if (string-match "^19\." emacs-version)
46     (progn
47 ;      (setq file-name-handler-alist     ; Disable nasty auto-loading of ange-ftp
48 ;            (delq (rassq 'ange-ftp-completion-hook-function file-name-handler-alist)
49 ;                  file-name-handler-alist))
50       (require 'find-alternate-18style)
51       (defun unset-down-mouse-23 ()
52         (local-set-key [mouse-2] 'mouse-yank-at-click)
53         (local-unset-key [down-mouse-2])
54         (local-unset-key [down-mouse-3])
55         (local-unset-key [C-down-mouse-3]))
56       (add-hook 'vm-mode-hook 'unset-down-mouse-23)
57       (add-hook 'vm-mail-mode-hook 'unset-down-mouse-23)
58       (add-hook 'text-mode-hook 'unset-down-mouse-23)
59       (add-hook 'Info-mode-hook
60                 (function (lambda ()
61                             (local-set-key " " 'scroll-up)
62                             (local-set-key "\7f" 'scroll-down))))
63       (add-hook 'sh-mode-hook
64                 (function (lambda ()
65                             (local-set-key "<" 'self-insert-command))))
66       (define-key isearch-mode-map "\1c" 'isearch-repeat-forward)
67       (define-key isearch-mode-map "\1d" 'isearch-quote-char)))
68 ;
69 (menu-bar-mode -1)
70 (defun terminal-keybindings ()
71   "This function should be called by the term-setup-hook mechanism"
72   (interactive)
73   ; Set my own keybindings
74   ;
75   ; Set keybindings generally (including I-search on C-\)
76 ;  (global-set-key "    " 'self-insert-command)
77   (global-set-key "\1c" 'isearch-forward)
78 ;  (global-set-key "\r" 'newline)
79   (global-set-key "\ f" 'set-mark-command)
80   (global-set-key "\1d" 'quoted-insert)
81   ;
82   ; Set keybindings on esc-map
83   (global-set-key "\e#" 'query-replace-regexp)
84   (global-set-key "\e+" 'toggle-truncate-lines)
85   (global-set-key "\eg" 'goto-line)
86   (global-set-key "\es" 'isearch-forward-regexp)
87   (global-set-key "\e\e" 'eval-expression)
88   ;
89   ; Set keybindings on ^X-map.
90   (global-set-key "\18m" 'vm-mail)
91   (global-set-key "\18\1c" 'save-buffer)
92   (global-set-key "\18\1d" 'toggle-read-only)
93   (global-set-key "\18#" 'recover-file)
94   (global-set-key "\18\12" 'bury-buffer)
95   (global-set-key "\18\v" 'quicker-compile)
96   (global-set-key "\18\18" 'exchange-point-and-mark)
97   (global-set-key "\18\1a" 'load-tramp)
98   (global-set-key "\184\16" 'scroll-other-window)
99   (global-set-key "\184m" 'vm-mail-other-window)
100   (global-set-key "\189" 'vm-visit-folder)
101   (global-set-key "\188" 'rmail-input)
102   (global-set-key "\18p" 'cite-region)
103   (global-set-key "\18F" 'mail-formletter)
104   ;
105   ; Set keybindings for Sun numeric pad.
106   (setq esc-bracket-map (make-keymap))
107   (define-key esc-bracket-map "D" 'backward-char)
108   (define-key esc-bracket-map "C" 'forward-char)
109   (define-key esc-bracket-map "A" 'previous-line)
110   (define-key esc-bracket-map "B" 'next-line)
111   (define-key esc-map "[" esc-bracket-map)
112   (global-set-key "\e[214z" 'beginning-of-buffer)
113   (global-set-key "\e[220z" 'end-of-buffer)
114   (global-set-key "\e[216z" 'scroll-down)
115   (global-set-key "\e[222z" 'scroll-up)
116   (global-set-key "\e[192z" 'save-buffer)
117   (global-set-key "\e[194z" 'save-some-buffers)
118   (global-set-key "\e[195z" 'undo)
119   (global-set-key "\e[193z" 'call-last-kbd-macro)
120   (global-set-key "\e[196z" 'switch-to-buffer-other-window)
121   (global-set-key "\e[197z" 'copy-region-as-kill)
122   (global-set-key "\e[198z" 'find-file)
123   (global-set-key "\e[199z" 'yank)
124   (global-set-key "\e[198z" 'find-alternate-file)
125   (global-set-key "\e[200z" 'find-file)
126   (global-set-key "\e[201z" 'kill-region)
127   (global-set-key "\e[-1z" 'info)
128   ;
129   ; Set keybindings for Chiarks' x11emacs
130   (global-set-key "\e[5~" 'scroll-down)
131   (global-set-key "\e[6~" 'scroll-up)
132   ;
133   ; Set keybindings for knackered vt100-like terminal emulators.
134   (global-set-key "\eOt" 'scroll-down)
135   (global-set-key "\eOu" 'scroll-up)
136   (global-set-key "\eOD" 'backward-char)
137   (global-set-key "\eOC" 'forward-char)
138   (global-set-key "\eOA" 'previous-line)
139   (global-set-key "\eOB" 'next-line))
140 (setq term-setup-hook 'terminal-keybindings)     ; remap keys in due course
141 ;
142 (setq frame-title-format
143       '(multiple-frames
144         (:eval 
145          (let*
146              ((buf (current-buffer))
147               (leaf (buffer-name buf))
148               (dir default-directory))
149            (if dir
150                (let*
151                    ((dir (abbreviate-file-name dir))
152                     (node (replace-regexp-in-string "\\..*" "" system-name)))
153                  (concat leaf "  " node ":" dir))
154              leaf)))
155         ("" invocation-name "@" system-name)))
156 ;(setq frame-title-format
157 ;      '(multiple-frames
158 ;       (:eval 
159 ;        (let*
160 ;            ((buf (current-buffer))
161 ;             (fn (buffer-file-name buf)))
162 ;          (if fn
163 ;              (let*
164 ;                  ((fn (abbreviate-file-name fn))
165 ;                   (dir (file-name-directory fn))
166 ;                   (leaf (file-name-nondirectory fn))
167 ;                   (node (replace-regexp-in-string "\\..*" "" system-name)))
168 ;                (concat leaf "  " node ":" dir))
169 ;            (buffer-name buf))))
170 ;       ("" invocation-name "@" system-name)))
171 ;
172 ; Autoload definitions
173 (autoload 'tar-mode "tar-mode")
174 (autoload 'uncompress-while-visiting "uncompress")
175 ; (autoload 'c++-mode "c++-mode" "Mode for editing C and C++ programs" t)
176 (autoload 'hide-ifdef-mode "hideif" "For editing code with #ifdefs" t)
177 ;(setq-default indent-tabs-mode nil)
178 (autoload 'dired-find-alternate-file "dired-alternate" "Find alternately" t)
179 (autoload 'dired-run-file "dired-alternate" "Run this file" t)
180 (autoload 'perl-mode "perl-mode" "Mode for Perl code" t)
181 ; (autoload 'rmail "rmail-fixed" "Patched mail reader" t)
182 (autoload 'quicker-compile "quicker-compile" "Patched Compile mode" t)
183
184 ;(autoload 'vm "vm" "Start VM on your primary inbox." t)
185 ;(autoload 'vm-visit-folder "vm" "Start VM on an arbitrary folder." t)
186 ;(autoload 'vm-visit-virtual-folder "vm" "Visit a VM virtual folder." t)
187 ;(autoload 'vm-mode "vm" "Run VM major mode on a buffer" t)
188 ;(autoload 'vm-mail "vm" "Send a mail message using VM." t)
189 ;(autoload 'vm-submit-bug-report "vm" "Send a bug report about VM." t)
190 ;
191 ;(require 'vm-autoload)
192 ;
193 ; (autoload 'info "info-fixed" "Patched info browser" t)
194 (setq shell-mode-hook
195       '(lambda ()
196          (make-variable-buffer-local 'scroll-step)
197          (setq scroll-step 1)))
198 (setq inferior-lisp-program "sbcl")
199 ;(setq jit-lock-chunk-size 100
200 ;      jit-lock-stealth-time 1.00)
201 (setq dired-mode-hook
202       '(lambda ()
203          (define-key dired-mode-map "F" 'dired-find-alternate-file)
204          (define-key dired-mode-map "X" 'dired-run-file)))
205 ;
206 ; Prevent loading of default init file and do some of the things it did
207 ; (setq inhibit-default-init t)
208 ;
209 ; Additional alist handling function
210 ;(defun alist-remove-elem (s s-list)
211 ;  "Delete the element of the alist S-LIST whose car is S"
212 ;  (if s-list (if (equal s (car (car s-list)))
213 ;                (cdr s-list)
214 ;              (cons (car s-list) (alist-remove-elem s (cdr s-list))))
215 ;    (nil)))
216 ;
217 ; Load C++ mode and edit Perl in perl mode
218 (setq auto-mode-alist
219       (append '(("\\.[ch]$" . c-mode)
220                 ("\\.[CH]$" . c++-mode)
221                 ("\\.cc$" . c++-mode)
222                 ("\\.hh$" . c++-mode)
223 ;                ("\\.tar$" . tar-mode)
224                 ("\\.pl$" . perl-mode)
225                 ("\\.ci$" . tex-mode)
226                 ("\\.asm$" . fundamental-mode)
227                 ("\\.Z$" . uncompress-while-visiting))
228               auto-mode-alist))
229 (setq interpreter-mode-alist
230       (append '(("sh" . fundamental-mode)
231                 ("bash" . fundamental-mode))
232               interpreter-mode-alist))
233 ;
234 ; Use auto-fill when editing text
235 (add-hook 'text-mode-hook '(lambda () (auto-fill-mode 1)))
236 ; (add-hook 'text-mode-hook '(lambda () (local-set-key "        " 'self-insert-command)))
237 ;
238 ; Set up newline to auto-indent & other stuff for perl, c++ and c modes.
239 (setq perl-mode-hook '(lambda () 
240                         (local-set-key ";" 'self-insert-command)))
241 (setq c++-mode-hook '(lambda ()
242                        (hide-ifdef-mode 1)
243                        (local-set-key "," 'self-insert-command)
244                        (local-set-key ":" 'electric-c++-terminator)))
245 ; c++-electric-colon
246 (setq c-mode-hook '(lambda ()
247                      (hide-ifdef-mode 1)
248                      (c-set-offset 'substatement-open 0 nil)
249                      (local-set-key "," 'self-insert-command)
250                      (local-set-key ";" 'self-insert-command)
251                      (local-set-key "/" 'self-insert-command)
252                      (local-set-key "*" 'self-insert-command)
253                      (local-set-key "#" 'self-insert-command)
254                      (local-set-key "(" 'self-insert-command)
255                      (local-set-key ")" 'self-insert-command)
256                      (local-set-key "{" 'self-insert-command)
257                      (local-set-key "\r" 'newline-and-indent)))
258 (setq c-hanging-comment-ender-p nil)
259 ;
260 (defun vm-mail-other-window ()
261   "Like `vm-mail' command, but display buffer in another window."
262   (interactive)
263   (switch-to-buffer-other-window (current-buffer))
264   (vm-mail))
265 ;
266 ; mail precedences
267 (setq mail-precedence-key-alist
268       '((?0  . "special-delivery")
269         (?1  . "air-mail")
270         (?2  . "first-class")
271         (?3  . "second-class")
272         (?5  . "third-class")
273         (?\  . nil)
274         (?6  . "bulk")
275         (?9  . "junk")))
276 ;
277 (defun mail-precedence-as-key ()
278   "Set precedence by looking up last command char in mail-precedence-key-alist"
279   (interactive)
280   (message "%s" (concat "Precedence ["
281                         (mapconcat '(lambda (c) (char-to-string (car c)))
282                                    mail-precedence-key-alist "")
283                         "] ?"))
284   (let* ((key (read-char))
285          (prec (assoc key mail-precedence-key-alist)))
286     (if prec (mail-precedence (cdr prec))
287       (error "mail-precedence-as-key `%s' not found" key))))
288 ;
289 (defun mail-precedence-as-key-send-and-exit (arg)
290   "Set precedence by looking up last command char in mail-precedence-key-alist,
291 then call send-and-exit."
292   (interactive "P")
293   (mail-precedence-as-key)
294   (execute-kbd-macro "\ 3\ 3"))
295 ;
296 (defun mail-precedence (prec)
297   (save-excursion
298     (mail-position-on-field "Precedence")
299     (let ((p (point)))
300       (beginning-of-line)
301       (delete-region (point) p)
302       (if prec
303           (insert "Precedence: " prec)
304         (delete-char 1)))))
305 ;
306 (defun mail-mode-setup-keys ()
307   (local-set-key "\ 3\10" 'mail-precedence-as-key)
308   (local-set-key "\ 3p" 'mail-precedence-as-key-send-and-exit))
309 (add-hook 'mail-mode-hook 'mail-mode-setup-keys)
310 (add-hook 'vm-mail-mode-hook 'mail-mode-setup-keys)
311 ;
312 (defun vm-mail-other-window ()
313   "Like `vm-mail' command, but display buffer in another window."
314   (interactive)
315   (switch-to-buffer-other-window (current-buffer))
316   (vm-mail))
317 ;
318 (defun mail-formletter ()
319   "Run VM-mail with ,Formletter"
320   (interactive)
321   (vm-mail)
322   (rename-buffer (generate-new-buffer-name "form letter") t)
323   (delete-region (point-min) (point-max))
324   (insert-file (concat vm-folder-directory ",Formletter")))
325 ;
326 ; This function bound to C-x C-z
327 (defun load-tramp ()
328   "Load tramp using require, if it isn't loaded already"
329   (interactive)
330   (message "Loading tramp...")
331   (require 'tramp) ; -extended
332   (message "Loading tramp...done"))
333 ;
334 ; This function bound to M-+
335 (defun toggle-truncate-lines ()
336   "Toggle truncation or folding of long lines"
337   (interactive)
338   (set-variable 'truncate-lines (not truncate-lines))
339   (redraw-display))
340 ;
341 ; RMAIL stuff
342 ;(setq rmail-file-name "~/mail/RMAIL"
343 ;      mail-archive-file-name "~/mail/Outbound"
344 ;      rmail-primary-inbox-list '("~/mbox" "~/mail/Outbound" "~/mail/Record"
345 ;                                 "~/mail/Import" "/var/spool/mail/ian")
346 ;      rmail-delete-after-output t
347 ;      rmail-last-rmail-file ""
348 ;      rmail-ignored-headers (concat
349 ;                             "^Content-Identifier:\\|^X400-[^O][A-Za-z-]+:\\|"
350 ;                             rmail-ignored-headers))
351 ;
352 (defun make-regexps-ignore-non-address (list)
353   (apply 'append (mapcar
354                   '(lambda (item)
355                      (let ((item (mapconcat
356                                   '(lambda (ch)
357                                      (let ((s (char-to-string ch)))
358                                        (if (string-match "[][.*+?^$\\]" s)
359                                            (concat "\\" s)
360                                          s)))
361                                   item "")))
362                        (list
363                         (concat "<" item ">")
364                         (concat "^" item " *\\((.*)\\)?$"))))
365                   list)))
366 ;
367 ; BBDB
368 (setq bbdb-north-american-phone-numbers-p nil
369       bbdb/mail-auto-create-p t
370       bbdb-auto-revert-p t
371       bbdb-notice-auto-save-file-p t
372       bbdb-message-caching-enabled t)      
373 ;
374 ; VM stuff
375 (if (file-exists-p "~/private/private.el")
376   (load-file "~/private/private.el"))
377 (if (file-exists-p "~/private/private2.el")
378   (load-file "~/private/private2.el"))
379 (setq vm-included-text-attribution-format "%F writes (\"%s\"):\n"
380       vm-reply-subject-prefix "Re: "
381       vm-folder-directory "~/mail/"
382       vm-delete-after-saving t
383       vm-delete-empty-folders t
384       vm-mutable-windows t
385       vm-auto-get-new-mail nil
386       vm-auto-next-message nil
387       vm-jump-to-new-messages nil
388       vm-jump-to-unread-messages nil
389       vm-mime-digest-discard-header-regexp "only-drop-this-header"
390       vm-preview-lines nil
391       vm-included-text-prefix "> "
392       vm-confirm-quit 1
393       vm-auto-center-summary t
394       vm-confirm-new-folders t
395       vm-circular-folders nil
396       vm-visit-when-saving 0
397       vm-move-after-deleting t
398       vm-keep-sent-messages t
399       vm-follow-summary-cursor t
400       vm-frame-per-composition nil
401       vm-frame-per-edit nil
402       vm-frame-per-summary nil
403       vm-frame-per-folder nil
404       vm-tale-is-an-idiot t
405       vm-primary-inbox (concat vm-folder-directory "INBOX")
406       vm-sinbin-inbox (concat vm-folder-directory "SINBOX")
407       vm-uninteresting-senders "ian"
408       vm-reply-ignored-addresses
409       (make-regexps-ignore-non-address
410        '("ian@chiark.chu.cam.ac.uk" "ian" "iwj10@cus.cam.ac.uk"
411          "ian@chiark.greenend.org.uk"
412          "ijackson@nyx.cs.du.edu" "ijackson@gnu.ai.mit.edu"))
413       vm-primary-inbox (concat vm-folder-directory "INBOX")
414
415       vm-uninteresting-senders "ian"
416       vm-reply-ignored-addresses
417       (make-regexps-ignore-non-address
418        '("ijackson@chiark.chu.cam.ac.uk" "ijackson"
419          "iwj10@thor.cam.ac.uk" "iwj10@hermes.cam.ac.uk" "iwj10@cl.cam.ac.uk"
420          "iwj10@cam.ac.uk" "Ian.Jackson@cl.cam.ac.uk"))
421       mail-archive-file-name "~/mail/Outbound"
422
423
424       vm-spool-files
425       '((vm-primary-inbox "/var/spool/mail/ian"
426                           "~/mail/INBOX.CRASH")
427         (vm-primary-inbox "~/News/r" "~/mail/INBOX.CRASH")
428         (vm-primary-inbox "~/mbox" "~/mail/INBOX.CRASH")
429         (vm-primary-inbox "~/mail/Outbound" "~/mail/INBOX.CRASH")
430         (vm-primary-inbox "~/mail/Import" "~/mail/INBOX.CRASH")
431         (vm-primary-inbox "~/mail/Record" "~/mail/INBOX.CRASH")
432         (vm-sinbin-inbox "/var/spool/mail/ian" "~/mail/SINBOX.CRASH"))
433       vm-startup-with-summary t
434
435       user-mail-address "ijackson@chiark.greenend.org.uk"
436
437
438 ;      vm-spool-files
439 ;      (list
440 ;       (list vm-primary-inbox "~/mbox" "~/mail/INBOX.CRASH")
441 ;       (list vm-primary-inbox "~/mail/Outbound" "~/mail/INBOX.CRASH")
442 ;       (list vm-primary-inbox "~/mail/Record" "~/mail/INBOX.CRASH")
443 ;       (list vm-primary-inbox "~/mail/Import" "~/mail/INBOX.CRASH")
444 ;       (list vm-primary-inbox "/var/spool/mail/ian" "~/mail/INBOX.CRASH")
445 ;       (list vm-primary-inbox "~/News/r" "~/mail/INBOX.CRASH")
446 ;       (list vm-sysadmin-inbox "~/mbox" "~/mail/SINBOX.CRASH")
447 ;       (list vm-sysadmin-inbox "~/mail/SOutbound" "~/mail/SINBOX.CRASH")
448 ;       (list vm-sysadmin-inbox "~/mail/Import" "~/mail/SINBOX.CRASH")
449 ;       (list vm-sysadmin-inbox "/var/spool/mail/sysadmin" "~/mail/SINBOX.CRASH")
450 ; (list "/u/ijackson/mail/INBOX" "/u/ijackson/mbox" "/u/ijackson/mail/INBOX.CRASH")
451 ; (list "/u/ijackson/mail/INBOX" "/u/ijackson/mail/Outbound"
452 ;       "/u/ijackson/mail/INBOX.CRASH")
453 ; (list "/u/ijackson/mail/INBOX" "/u/ijackson/mail/Record" "/u/ijackson/mail/INBOX.CRASH")
454 ; (list "/u/ijackson/mail/INBOX" "/u/ijackson/mail/Import" "/u/ijackson/mail/INBOX.CRASH")
455 ;        (list "/u/ijackson/mail/INBOX"
456 ;         (concat "localhost:110:pass:ijackson:" ijackson-pop-password)
457 ;         "/u/ijackson/mail/INBOX.CRASH"))
458       vm-startup-with-summary nil
459       vm-summary-format "%3n %a %2d %3m  %-19.19F  %s\n"
460       mail-archive-file-name "~/mail/Outbound"
461       vm-mime-8bit-text-transfer-encoding '8bit)
462 ;
463 (add-hook 'vm-mode-hook
464           '(lambda ()
465              (local-set-key "Q" 'vm-quit)
466              (local-set-key "q" "###Q")))
467 (add-hook 'mail-mode-hook
468           '(lambda ()
469              (if (and (boundp 'folder-buffer)
470                       folder-buffer
471                       (string= (buffer-file-name folder-buffer)
472                                (file-truename vm-sysadmin-inbox)))
473                  (progn
474                    (make-local-variable 'vm-mail-header-from)
475                    (setq vm-mail-header-from
476                          "sysadmin@chiark.greenend.org.uk (Ian Jackson)")
477                    (make-local-variable 'mail-archive-file-name)
478                    (setq mail-archive-file-name
479                          "~/mail/SOutbound")))))
480 ;
481 ;(defun vmi ()
482 ;  (interactive)
483 ;  (vm "/u/ijackson/mail/INBOX"))
484 ;;
485 (defun vms ()
486   (interactive)
487   (vm vm-sinbin-inbox))
488 ;
489 (defun make-session ()
490   "Makes this emacs hard to kill by requiring ^X^Cy to kill it
491 instead of just ^X^C."
492   (interactive)
493   (global-unset-key "\18\ 3")
494   (global-set-key "\18\ 3y" 'save-buffers-kill-emacs))
495 ;
496 ; Fix problems with M-| setting window title of emacs' parent xterm
497 (defun envdelete-term-termcap-windowid (list)
498   (let ((l list))
499     (mapcar '(lambda (x)
500                (if x (delq x l)))
501             (mapcar '(lambda (x)
502                        (if (or (string-match "^TERM=" x)
503                                (string-match "^TERMCAP=" x)
504                                (string-match "^WINDOWID=" x))
505                            x
506                          nil))
507                     l))
508     l))
509 (setq process-environment
510       (envdelete-term-termcap-windowid process-environment))
511 ;
512 (defun add-insertion-keys (table)
513   "Adds keybindings according to TABLE.  Each element of
514 TABLE should be a four-element list.
515
516 BINDING should be the key to bind; FUNCTION will be the name of the
517 function defined to do the insertion; DESCRIPTION will be inserted
518 into \"Inserts ... .\", and used as the descriptive string for the
519 generated function; STRING is the string which will actually be
520 inserted into the buffer when the keystroke is pressed."
521   (while table
522     (let* ((head (car table))
523            (key (car head))
524            (func (nth 1 head))
525            (desc (nth 2 head))
526            (string (nth 3 head)))
527       (defalias func
528         (list
529          'lambda () 
530          (concat "Inserts " desc ".")
531          '(interactive)
532          (list 'insert string)))
533       (funcall 'local-set-key key func))
534     (setq table (cdr table))))
535
536 (defun ian-sgml-setup ()
537   (interactive)
538   (add-insertion-keys
539    '(("\ 3\r" sgml-insert-new-para "new paragraph markup" "\n<p>\n")
540      ("\ 3\14" sgml-insert-tt-emph "tt emph markup" "<tt/")
541      ("\ 3\10" sgml-insert-prgn-emph "prgn emph markup" "<prgn/")
542      ("\ 3\ 5" sgml-insert-em-emph "em emfh markup" "<em/")
543      ("\ 3\16" sgml-insert-var-empfh "var emph markup" "<var/"))))
544 (setq sgml-local-catalogs '("/jura:/usr/lib/debiandoc-sgml/sgml/catalog"))
545   
546 (add-hook 'sgml-mode-hook 'ian-sgml-setup)
547 ;
548 (defvar cite-string "> " "String to insert when citing")
549 ;
550 (defun cite-region (start end)
551   "Quote each line in the region with an angle-bracket and space.
552
553 The citation string is taken from cite-string."
554   (interactive "r")
555   (save-excursion
556     (save-restriction
557       (narrow-to-region start end)
558       (goto-char (point-min))
559       (insert cite-string)
560       (while
561           (and
562            (= (forward-line) 0)
563            (> (point-max) (point)))
564         (insert cite-string)))))
565 ;
566 ; End of this file.