Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e8b69dc2
Commit
e8b69dc2
authored
Oct 18, 2010
by
Stefan Monnier
Browse files
* lisp/repeat.el (repeat): Use read-key to ignore mouse-down events.
Fixes: debbugs:6256
parent
a8c41b4c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/ps-print.el
lisp/ps-print.el
+1
-1
lisp/repeat.el
lisp/repeat.el
+1
-1
No files found.
lisp/ChangeLog
View file @
e8b69dc2
2010-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
* repeat.el (repeat): Use read-key (bug#6256).
2010-10-18 Chong Yidong <cyd@stupidchicken.com>
* emacs-lisp/unsafep.el: Don't mark functions that display
...
...
lisp/ps-print.el
View file @
e8b69dc2
...
...
@@ -6656,7 +6656,7 @@ If FACE is not a valid face name, use default face."
;; But autoload them here to make the separation invisible.
;;;### (autoloads (ps-mule-end-job ps-mule-begin-job ps-mule-initialize
;;;;;; ps-multibyte-buffer) "ps-mule" "ps-mule.el" "
9
18
7df3473401876e0df4937c311fbaf
")
;;;;;; ps-multibyte-buffer) "ps-mule" "ps-mule.el" "18
a8bc30e8755ff27de7267f4bce3d99
")
;;; Generated autoloads from ps-mule.el
(
defvar
ps-multibyte-buffer
nil
"\
...
...
lisp/repeat.el
View file @
e8b69dc2
...
...
@@ -335,7 +335,7 @@ recently executed command not bound to an input event\"."
(
setq
real-last-command
'repeat
)
(
setq
repeat-undo-count
1
)
(
unwind-protect
(
while
(
let
((
evt
(
read-
event
)))
;FIXME: read-key maybe?
(
while
(
let
((
evt
(
read-
key
)))
;; For clicks, we need to strip the meta-data to
;; check the underlying event name.
(
eq
(
or
(
car-safe
evt
)
evt
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment