emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r114399: * lisp/emacs-lisp/cl-macs.el (cl-defsubst):


From: Glenn Morris
Subject: [Emacs-diffs] trunk r114399: * lisp/emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
Date: Thu, 19 Sep 2013 20:31:57 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114399
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2013-09-19 16:31:54 -0400
message:
  * lisp/emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/emacs-lisp/cl-macs.el     clmacs.el-20091113204419-o5vbwnq5f7feedwu-612
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-09-19 20:31:26 +0000
+++ b/lisp/ChangeLog    2013-09-19 20:31:54 +0000
@@ -1,5 +1,7 @@
 2013-09-19  Glenn Morris  <address@hidden>
 
+       * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
+
        * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
 
        * emacs-lisp/eieio.el (class-parent): Undo previous change.

=== modified file 'lisp/emacs-lisp/cl-macs.el'
--- a/lisp/emacs-lisp/cl-macs.el        2013-08-29 03:49:10 +0000
+++ b/lisp/emacs-lisp/cl-macs.el        2013-09-19 20:31:54 +0000
@@ -2701,8 +2701,10 @@
 
 \(fn NAME ARGLIST [DOCSTRING] BODY...)"
   (declare (debug cl-defun) (indent 2))
-  (let* ((argns (cl--arglist-args args)) (p argns)
-        (pbody (cons 'progn body)))
+  (let* ((argns (cl--arglist-args args))
+         (p argns)
+         ;; (pbody (cons 'progn body))
+         )
     (while (and p (eq (cl--expr-contains args (car p)) 1)) (pop p))
     `(progn
        ,(if p nil   ; give up if defaults refer to earlier args


reply via email to

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