]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 13 Jun 2012 15:46:29 +0000 (11:46 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 13 Jun 2012 15:46:29 +0000 (11:46 -0400)
mapping from #' to function*.

lisp/ChangeLog
lisp/emacs-lisp/edebug.el

index 845c666bc8b33981c3936fd3c786137e76e7b5e2..3669101d3aed654b9f8485cd52f16f2158929061 100644 (file)
@@ -1,3 +1,8 @@
+2012-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
+       mapping from #' to function*.
+
 2012-06-13  Chong Yidong  <cyd@gnu.org>
 
        * mouse.el (mouse-drag-track): Do not set the mark if the user
index 28b768a14b3220b97a71c97f69a2af6e318bdf3b..c1c65b6f66188aacb2d454b725f5fef78507fc75 100644 (file)
@@ -919,8 +919,7 @@ already is one.)"
   (cond ((eq ?\' (following-char))
         (forward-char 1)
         (list
-         (edebug-storing-offsets (- (point) 2)
-           (if (featurep 'cl) 'function* 'function))
+         (edebug-storing-offsets (- (point) 2) 'function)
          (edebug-read-storing-offsets stream)))
        ((memq (following-char) '(?: ?B ?O ?X ?b ?o ?x ?1 ?2 ?3 ?4 ?5 ?6
                                  ?7 ?8 ?9 ?0))