aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2012-07-25 21:29:24 -0400
committerStefan Monnier2012-07-25 21:29:24 -0400
commit670d85ea14e772836797d43101f9c5c5cc1af05e (patch)
treef640324decb781e4439ba96f7f4c80e24ea2f350
parent7abaf5ccc9f11e657b6671e7a6d5a7533bba5f31 (diff)
downloademacs-670d85ea14e772836797d43101f9c5c5cc1af05e.tar.gz
emacs-670d85ea14e772836797d43101f9c5c5cc1af05e.zip
* lisp/mouse.el (popup-menu): Fix last change.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/emacs-lisp/cl-loaddefs.el2
-rw-r--r--lisp/mouse.el2
3 files changed, 8 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 40cded6f9cc..e249b4ab759 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12012-07-26 Stefan Monnier <monnier@iro.umontreal.ca> 12012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * mouse.el (popup-menu): Fix last change.
4
52012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
6
3 Autoload from Lisp with more care. Follow aliases when looking for 7 Autoload from Lisp with more care. Follow aliases when looking for
4 function properties. 8 function properties.
5 * subr.el (autoloadp): New function. 9 * subr.el (autoloadp): New function.
@@ -31,7 +35,6 @@
31 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): 35 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
32 * calc/calc.el (name): Use autoloadp & autoload-do-load. 36 * calc/calc.el (name): Use autoloadp & autoload-do-load.
33 37
34
352012-07-25 Alp Aker <alp.tekin.aker@gmail.com> 382012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
36 39
37 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete 40 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
@@ -88,8 +91,8 @@
88 91
892012-07-21 Leo Liu <sdl.web@gmail.com> 922012-07-21 Leo Liu <sdl.web@gmail.com>
90 93
91 * progmodes/cc-cmds.el (c-defun-name): Use 94 * progmodes/cc-cmds.el (c-defun-name):
92 match-string-no-properties instead for consistency. 95 Use match-string-no-properties instead for consistency.
93 96
942012-07-20 Leo Liu <sdl.web@gmail.com> 972012-07-20 Leo Liu <sdl.web@gmail.com>
95 98
diff --git a/lisp/emacs-lisp/cl-loaddefs.el b/lisp/emacs-lisp/cl-loaddefs.el
index f22bda1559a..2d00aa62c20 100644
--- a/lisp/emacs-lisp/cl-loaddefs.el
+++ b/lisp/emacs-lisp/cl-loaddefs.el
@@ -260,7 +260,7 @@ Remove from SYMBOL's plist the property PROPNAME and its value.
260;;;;;; cl-do cl-loop cl-return-from cl-return cl-block cl-etypecase 260;;;;;; cl-do cl-loop cl-return-from cl-return cl-block cl-etypecase
261;;;;;; cl-typecase cl-ecase cl-case cl-load-time-value cl-eval-when 261;;;;;; cl-typecase cl-ecase cl-case cl-load-time-value cl-eval-when
262;;;;;; cl-destructuring-bind cl-function cl-defmacro cl-defun cl-gentemp 262;;;;;; cl-destructuring-bind cl-function cl-defmacro cl-defun cl-gentemp
263;;;;;; cl-gensym) "cl-macs" "cl-macs.el" "6b06545d8d17e8b902435f08be6ac0c2") 263;;;;;; cl-gensym) "cl-macs" "cl-macs.el" "db390970b6e9bd057169b197d5189781")
264;;; Generated autoloads from cl-macs.el 264;;; Generated autoloads from cl-macs.el
265 265
266(autoload 'cl-gensym "cl-macs" "\ 266(autoload 'cl-gensym "cl-macs" "\
diff --git a/lisp/mouse.el b/lisp/mouse.el
index 84b76e184a8..07277a409ae 100644
--- a/lisp/mouse.el
+++ b/lisp/mouse.el
@@ -116,7 +116,7 @@ PREFIX is the prefix argument (if any) to pass to the command."
116 (setq position 116 (setq position
117 (cond 117 (cond
118 ((eq position 'point) 118 ((eq position 'point)
119 (let* ((pp (posn-at-point pos window)) 119 (let* ((pp (posn-at-point))
120 (xy (posn-x-y pp))) 120 (xy (posn-x-y pp)))
121 (list (list (car xy) (cdr xy)) (posn-window pp)))) 121 (list (list (car xy) (cdr xy)) (posn-window pp))))
122 ((not position) 122 ((not position)