diff options
author | Richard M. Stallman <rms@gnu.org> | 1992-10-03 18:03:17 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1992-10-03 18:03:17 +0000 |
commit | af36339a347da5641eb79f33507d43b8543b4169 (patch) | |
tree | 378e5f42b97039d4a901299408100045ce75c883 /lisp/emacs-lisp | |
parent | a864e33e0ad43c41a613dddab6d7ab1193239a69 (diff) | |
download | emacs-af36339a347da5641eb79f33507d43b8543b4169.tar.gz emacs-af36339a347da5641eb79f33507d43b8543b4169.tar.bz2 emacs-af36339a347da5641eb79f33507d43b8543b4169.zip |
Dox fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/backquote.el | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el index c08ea44ee59..e4c7da1d13f 100644 --- a/lisp/emacs-lisp/backquote.el +++ b/lisp/emacs-lisp/backquote.el @@ -195,9 +195,6 @@ See backquote.el for details" ;;; This maintains the invariant that (cons state tailmaker) is the ;;; maker for the elements of the tail we've eaten so far. (defun bq-iterative-list-builder (form) - "Adds a new item form to tailmaker changing state if need be, so tailmaker -and state constitute a recipe for making the list so far. Called by -`bq-make-maker'." (cond ((atom form) (funcall (bq-cadr (assq state bq-quotefns)) form)) ((memq (car form) backquote-unquote) |