comparison lisp/text-mode.el @ 298:70ad99077275 r21-0b47

Import from CVS: tag r21-0b47
author cvs
date Mon, 13 Aug 2007 10:39:40 +0200
parents 677f6a0ee643
children
comparison
equal deleted inserted replaced
297:deca3c1083ac 298:70ad99077275
80 (kill-all-local-variables) 80 (kill-all-local-variables)
81 (use-local-map text-mode-map) 81 (use-local-map text-mode-map)
82 (setq local-abbrev-table text-mode-abbrev-table) 82 (setq local-abbrev-table text-mode-abbrev-table)
83 (set-syntax-table text-mode-syntax-table) 83 (set-syntax-table text-mode-syntax-table)
84 (make-local-variable 'paragraph-start) 84 (make-local-variable 'paragraph-start)
85 (setq paragraph-start (concat "[ \t]*$\\|" page-delimiter)) 85 (setq paragraph-start (concat page-delimiter "\\|[ \t]*$"))
86 (make-local-variable 'paragraph-separate) 86 (make-local-variable 'paragraph-separate)
87 (setq paragraph-separate paragraph-start) 87 (setq paragraph-separate paragraph-start)
88 (setq mode-name "Text") 88 (setq mode-name "Text")
89 (setq major-mode 'text-mode) 89 (setq major-mode 'text-mode)
90 (run-hooks 'text-mode-hook)) 90 (run-hooks 'text-mode-hook))