dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

eldoc-autoloads.el (2391B)


      1 ;;; eldoc-autoloads.el --- automatically extracted autoloads
      2 ;;
      3 ;;; Code:
      4 
      5 (add-to-list 'load-path (directory-file-name
      6                          (or (file-name-directory #$) (car load-path))))
      7 
      8 
      9 ;;;### (autoloads nil "eldoc" "eldoc.el" (0 0 0 0))
     10 ;;; Generated autoloads from eldoc.el
     11 
     12 (defvar eldoc-minor-mode-string (purecopy " ElDoc") "\
     13 String to display in mode line when ElDoc Mode is enabled; nil for none.")
     14 
     15 (custom-autoload 'eldoc-minor-mode-string "eldoc" t)
     16 
     17 (autoload 'eldoc-mode "eldoc" "\
     18 Toggle echo area display of Lisp objects at point (ElDoc mode).
     19 
     20 If called interactively, enable Eldoc mode if ARG is positive,
     21 and disable it if ARG is zero or negative.  If called from Lisp,
     22 also enable the mode if ARG is omitted or nil, and toggle it if
     23 ARG is `toggle'; disable the mode otherwise.
     24 
     25 ElDoc mode is a buffer-local minor mode.  When enabled, the echo
     26 area displays information about a function or variable in the
     27 text where point is.  If point is on a documented variable, it
     28 displays the first line of that variable's doc string.  Otherwise
     29 it displays the argument list of the function called in the
     30 expression point is on.
     31 
     32 \(fn &optional ARG)" t nil)
     33 
     34 (put 'global-eldoc-mode 'globalized-minor-mode t)
     35 
     36 (defvar global-eldoc-mode t "\
     37 Non-nil if Global Eldoc mode is enabled.
     38 See the `global-eldoc-mode' command
     39 for a description of this minor mode.
     40 Setting this variable directly does not take effect;
     41 either customize it (see the info node `Easy Customization')
     42 or call the function `global-eldoc-mode'.")
     43 
     44 (custom-autoload 'global-eldoc-mode "eldoc" nil)
     45 
     46 (autoload 'global-eldoc-mode "eldoc" "\
     47 Toggle Eldoc mode in all buffers.
     48 With prefix ARG, enable Global Eldoc mode if ARG is positive;
     49 otherwise, disable it.  If called from Lisp, enable the mode if
     50 ARG is omitted or nil.
     51 
     52 Eldoc mode is enabled in all buffers where
     53 `turn-on-eldoc-mode' would do it.
     54 See `eldoc-mode' for more information on Eldoc mode.
     55 
     56 \(fn &optional ARG)" t nil)
     57 
     58 (autoload 'turn-on-eldoc-mode "eldoc" "\
     59 Turn on `eldoc-mode' if the buffer has ElDoc support enabled.
     60 See `eldoc-documentation-strategy' for more detail." nil nil)
     61 
     62 (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "eldoc" '("eldoc")))
     63 
     64 ;;;***
     65 
     66 ;; Local Variables:
     67 ;; version-control: never
     68 ;; no-byte-compile: t
     69 ;; no-update-autoloads: t
     70 ;; coding: utf-8
     71 ;; End:
     72 ;;; eldoc-autoloads.el ends here