emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r102343: esh-opt comments.


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r102343: esh-opt comments.
Date: Wed, 10 Nov 2010 20:11:33 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 102343
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2010-11-10 20:11:33 -0800
message:
  esh-opt comments.
modified:
  lisp/eshell/esh-opt.el
=== modified file 'lisp/eshell/esh-opt.el'
--- a/lisp/eshell/esh-opt.el    2010-01-13 08:35:10 +0000
+++ b/lisp/eshell/esh-opt.el    2010-11-11 04:11:33 +0000
@@ -64,10 +64,9 @@
               macro-args
             (list 'eshell-stringify-list
                   (list 'eshell-flatten-list macro-args)))))
-     (let ,(append (mapcar (function
-                           (lambda (opt)
-                             (or (and (listp opt) (nth 3 opt))
-                                 'eshell-option-stub)))
+     (let ,(append (mapcar (lambda (opt)
+                            (or (and (listp opt) (nth 3 opt))
+                                'eshell-option-stub))
                           (cadr options))
                   '(usage-msg last-value ext-command args))
        (eshell-do-opt ,name ,options (quote ,body-forms)))))
@@ -78,6 +77,7 @@
 (defvar last-value)
 (defvar usage-msg)
 (defvar ext-command)
+;; Documented part of the interface; see eshell-eval-using-options.
 (defvar args)
 
 (defun eshell-do-opt (name options body-forms)
@@ -224,5 +224,4 @@
                (setq index (1+ index)))))))))
   args)
 
-;; arch-tag: 45c6c2d0-8091-46a1-a205-2f4bafd8230c
 ;;; esh-opt.el ends here


reply via email to

[Prev in Thread] Current Thread [Next in Thread]