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
6131ba7f
Commit
6131ba7f
authored
Dec 02, 2011
by
Stefan Monnier
Browse files
* lisp/dired-aux.el (dired-query): Don't assume help-char is modifier-free.
Fixes: debbugs:10191
parent
cb0a02ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
lisp/ChangeLog
lisp/ChangeLog
+7
-2
lisp/dired-aux.el
lisp/dired-aux.el
+1
-2
No files found.
lisp/ChangeLog
View file @
6131ba7f
2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
* dired-aux.el (dired-query): Don't assume help-char is modifier-free
(bug#10191).
2011-12-02 Juri Linkov <juri@jurta.org>
* info.el (Info-search): Display "end of manual" when Isearch
...
...
@@ -194,8 +199,8 @@
(gdb-gud-context-command, gdb-non-stop-handler)
(gdb-current-context-command, gdb-stopped): Use it.
(gdb-init-1): Enable pretty printing here.
(gdb-non-stop-handler): Don't enable pretty-printing here.
Check
to see if the target supports non-stop mode; if not, turn off
(gdb-non-stop-handler): Don't enable pretty-printing here.
Check
to see if the target supports non-stop mode; if not, turn off
non-stop mode. Use the following.
(gdb-check-target-async): New defun.
(gud-watch, gdb-stopped): Fix whitespace.
...
...
lisp/dired-aux.el
View file @
6131ba7f
...
...
@@ -927,8 +927,7 @@ return t; if SYM is q or ESC, return nil."
(
concat
(
apply
'format
prompt
args
)
(
if
help-form
(
format
" [Type yn!q or %s] "
(
key-description
(
char-to-string
help-char
)))
(
key-description
(
vector
help-char
)))
" [Type y, n, q or !] "
)))
(
set
sym
(
setq
char
(
read-char-choice
prompt
char-choices
)))
(
if
(
memq
char
'
(
?y
?\s
?!
))
t
)))))
...
...
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