mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 09:14:18 +00:00
Add doc strings to the ielm * variables
* lisp/ielm.el: (*, **, ***): Add doc strings.
This commit is contained in:
parent
14ef4539bb
commit
756c48b33f
1 changed files with 6 additions and 3 deletions
|
|
@ -122,14 +122,17 @@ such as `edebug-defun' to work with such inputs."
|
||||||
:type 'hook
|
:type 'hook
|
||||||
:group 'ielm)
|
:group 'ielm)
|
||||||
|
|
||||||
;; Most recent value evaluated in IELM.
|
;; We define these symbols (that are only used buffer-locally in ielm
|
||||||
|
;; buffers) this way to avoid having them be defined in the global
|
||||||
|
;; Emacs namespace.
|
||||||
(defvar *)
|
(defvar *)
|
||||||
|
(put '* 'variable-documentation "Most recent value evaluated in IELM.")
|
||||||
|
|
||||||
;; Second-most-recent value evaluated in IELM.
|
|
||||||
(defvar **)
|
(defvar **)
|
||||||
|
(put '** 'variable-documentation "Second-most-recent value evaluated in IELM.")
|
||||||
|
|
||||||
;; Third-most-recent value evaluated in IELM.
|
|
||||||
(defvar ***)
|
(defvar ***)
|
||||||
|
(put '*** 'variable-documentation "Third-most-recent value evaluated in IELM.")
|
||||||
|
|
||||||
(defvar ielm-match-data nil
|
(defvar ielm-match-data nil
|
||||||
"Match data saved at the end of last command.")
|
"Match data saved at the end of last command.")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue