comparison lisp/textmodes/fill.el @ 92948:73a01bf5cb80

* faces.el (xw-defined-colors): * simple.el (widget-convert, shell-mode): Declare as functions instead of autoloading. * abbrev.el: * button.el: * cus-face.el: * ediff-hook.el: * emacs-lisp/backquote.el: * emacs-lisp/timer.el: * facemenu.el: * faces.el: * menu-bar.el: * simple.el: * subr.el: * textmodes/fill.el: * textmodes/paragraphs.el: Remove autoloads, redundant when the files are preloaded.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 14 Mar 2008 17:42:18 +0000
parents 4054054dd212
children 0ab0b9641d80
comparison
equal deleted inserted replaced
92947:04e711bb2db2 92948:73a01bf5cb80
46 46
47 (defcustom colon-double-space nil 47 (defcustom colon-double-space nil
48 "*Non-nil means put two spaces after a colon when filling." 48 "*Non-nil means put two spaces after a colon when filling."
49 :type 'boolean 49 :type 'boolean
50 :group 'fill) 50 :group 'fill)
51 ;;;###autoload(put 'colon-double-space 'safe-local-variable 'booleanp) 51 (put 'colon-double-space 'safe-local-variable 'booleanp)
52 52
53 (defvar fill-paragraph-function nil 53 (defvar fill-paragraph-function nil
54 "Mode-specific function to fill a paragraph, or nil if there is none. 54 "Mode-specific function to fill a paragraph, or nil if there is none.
55 If the function returns nil, then `fill-paragraph' does its normal work. 55 If the function returns nil, then `fill-paragraph' does its normal work.
56 A value of t means explicitly \"do nothing special\".") 56 A value of t means explicitly \"do nothing special\".")