diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/man.el | 6 | ||||
| -rw-r--r-- | lisp/progmodes/gud.el | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/lisp/man.el b/lisp/man.el index 5278a1a84dd..8a36f3ac25d 100644 --- a/lisp/man.el +++ b/lisp/man.el @@ -996,7 +996,11 @@ An \"apropos\" query with -k gives a buffer of matching page names or descriptions. The pattern argument is usually an \"grep -E\" style regexp. - -k pattern" + -k pattern + +Note that in some cases you will need to use \\[quoted-insert] to quote the +SPC character in the above examples, because this command attempts +to auto-complete your input based on the installed manual pages." (interactive (list (let* ((default-entry (Man-default-man-entry)) diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el index eb43e8b7e44..092d15983e5 100644 --- a/lisp/progmodes/gud.el +++ b/lisp/progmodes/gud.el @@ -2620,9 +2620,9 @@ comint mode, which see." (select-window (display-buffer (get-buffer-create (concat "*gud" filepart "*")) - '(display-buffer-reuse-window - display-buffer-in-previous-window - display-buffer-same-window display-buffer-pop-up-window))) + '((display-buffer-reuse-window + display-buffer-in-previous-window + display-buffer-same-window display-buffer-pop-up-window)))) (when (and existing-buffer (get-buffer-process existing-buffer)) (error "This program is already being debugged")) ;; Set the dir, in case the buffer already existed with a different dir. |
