comparison lisp/simple.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 aa52fda2a68b
children b1cbc5b82a29
comparison
equal deleted inserted replaced
92947:04e711bb2db2 92948:73a01bf5cb80
29 ;; A grab-bag of basic Emacs commands not specifically related to some 29 ;; A grab-bag of basic Emacs commands not specifically related to some
30 ;; major mode or to file-handling. 30 ;; major mode or to file-handling.
31 31
32 ;;; Code: 32 ;;; Code:
33 33
34 (eval-when-compile 34 (declare-function widget-convert "wid-edit" (type &rest args))
35 (autoload 'widget-convert "wid-edit") 35 (declare-function shell-mode "shell" ())
36 (autoload 'shell-mode "shell"))
37 36
38 (defvar compilation-current-error) 37 (defvar compilation-current-error)
39 38
40 (defcustom idle-update-delay 0.5 39 (defcustom idle-update-delay 0.5
41 "*Idle time delay before updating various things on the screen. 40 "*Idle time delay before updating various things on the screen.
4390 "*String for filling to insert at front of new line, or nil for none." 4389 "*String for filling to insert at front of new line, or nil for none."
4391 :type '(choice (const :tag "None" nil) 4390 :type '(choice (const :tag "None" nil)
4392 string) 4391 string)
4393 :group 'fill) 4392 :group 'fill)
4394 (make-variable-buffer-local 'fill-prefix) 4393 (make-variable-buffer-local 'fill-prefix)
4395 ;;;###autoload(put 'fill-prefix 'safe-local-variable 'string-or-null-p) 4394 (put 'fill-prefix 'safe-local-variable 'string-or-null-p)
4396 4395
4397 (defcustom auto-fill-inhibit-regexp nil 4396 (defcustom auto-fill-inhibit-regexp nil
4398 "*Regexp to match lines which should not be auto-filled." 4397 "*Regexp to match lines which should not be auto-filled."
4399 :type '(choice (const :tag "None" nil) 4398 :type '(choice (const :tag "None" nil)
4400 regexp) 4399 regexp)