comparison lisp/add-log.el @ 13706:ba34746d66fd

(change-log-mode): Defaults for `indent-tabs-mode' and `tab-width'.
author Karl Heuer <kwzh@gnu.org>
date Wed, 13 Dec 1995 01:36:02 +0000
parents ce23ae11d3fa
children 83f275dcd93a
comparison
equal deleted inserted replaced
13705:4111cc3136d1 13706:ba34746d66fd
277 (kill-all-local-variables) 277 (kill-all-local-variables)
278 (indented-text-mode) 278 (indented-text-mode)
279 (setq major-mode 'change-log-mode 279 (setq major-mode 'change-log-mode
280 mode-name "Change Log" 280 mode-name "Change Log"
281 left-margin 8 281 left-margin 8
282 fill-column 74) 282 fill-column 74
283 indent-tabs-mode t
284 tab-width 8)
283 (use-local-map change-log-mode-map) 285 (use-local-map change-log-mode-map)
284 ;; Let each entry behave as one paragraph: 286 ;; Let each entry behave as one paragraph:
285 ;; We really do want "^" in paragraph-start below: it is only the lines that 287 ;; We really do want "^" in paragraph-start below: it is only the lines that
286 ;; begin at column 0 (despite the left-margin of 8) that we are looking for. 288 ;; begin at column 0 (despite the left-margin of 8) that we are looking for.
287 (set (make-local-variable 'paragraph-start) "\\s *$\\|\f\\|^\\sw") 289 (set (make-local-variable 'paragraph-start) "\\s *$\\|\f\\|^\\sw")