]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/mouse.el (popup-menu): Fix last change.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 26 Jul 2012 01:29:24 +0000 (21:29 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 26 Jul 2012 01:29:24 +0000 (21:29 -0400)
lisp/ChangeLog
lisp/emacs-lisp/cl-loaddefs.el
lisp/mouse.el

index 40cded6f9cc20fad3ee9fe04d9e008f00826422f..e249b4ab75910e68ec25fe0421c2d5e7b067ab47 100644 (file)
@@ -1,3 +1,7 @@
+2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * mouse.el (popup-menu): Fix last change.
+
 2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        Autoload from Lisp with more care.  Follow aliases when looking for
@@ -31,7 +35,6 @@
        * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
        * calc/calc.el (name): Use autoloadp & autoload-do-load.
 
-
 2012-07-25  Alp Aker  <alp.tekin.aker@gmail.com>
 
        * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
@@ -88,8 +91,8 @@
 
 2012-07-21  Leo Liu  <sdl.web@gmail.com>
 
-       * progmodes/cc-cmds.el (c-defun-name): Use
-       match-string-no-properties instead for consistency.
+       * progmodes/cc-cmds.el (c-defun-name):
+       Use match-string-no-properties instead for consistency.
 
 2012-07-20  Leo Liu  <sdl.web@gmail.com>
 
index f22bda1559af7722adc57457541afc6638ba9c0e..2d00aa62c208395a16cd8ddbef537ea9b837cb1d 100644 (file)
@@ -260,7 +260,7 @@ Remove from SYMBOL's plist the property PROPNAME and its value.
 ;;;;;;  cl-do cl-loop cl-return-from cl-return cl-block cl-etypecase
 ;;;;;;  cl-typecase cl-ecase cl-case cl-load-time-value cl-eval-when
 ;;;;;;  cl-destructuring-bind cl-function cl-defmacro cl-defun cl-gentemp
-;;;;;;  cl-gensym) "cl-macs" "cl-macs.el" "6b06545d8d17e8b902435f08be6ac0c2")
+;;;;;;  cl-gensym) "cl-macs" "cl-macs.el" "db390970b6e9bd057169b197d5189781")
 ;;; Generated autoloads from cl-macs.el
 
 (autoload 'cl-gensym "cl-macs" "\
index 84b76e184a8d80e47a0a438eb1d9b3b1d18e00b5..07277a409aebb6557d4ce364e18fc31dcd73fb87 100644 (file)
@@ -116,7 +116,7 @@ PREFIX is the prefix argument (if any) to pass to the command."
   (setq position
        (cond
         ((eq position 'point)
-         (let* ((pp (posn-at-point pos window))
+         (let* ((pp (posn-at-point))
                  (xy (posn-x-y pp)))
            (list (list (car xy) (cdr xy)) (posn-window pp))))
         ((not position)