dotemacs

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

eldoc-autoloads.el (2968B)


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