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
896114cf
Commit
896114cf
authored
May 31, 2010
by
Stefan Monnier
Browse files
* lisp/man.el (Man-completion-table): Let the user type "-k ".
Fixes: debbugs:6319
parent
949544ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
lisp/ChangeLog
lisp/ChangeLog
+7
-4
lisp/man.el
lisp/man.el
+3
-0
No files found.
lisp/ChangeLog
View file @
896114cf
2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
* man.el (Man-completion-table): Let the user type "-k " (bug#6319).
2010-05-31 Drew Adams <drew.adams@oracle.com>
* files.el (directory-files-no-dot-files-regexp): Doc fix (bug#6298).
...
...
@@ -12,14 +16,13 @@
* ansi-color.el: Delete unused escape sequences (Bug#6085).
(ansi-color-drop-regexp): New constant.
(ansi-color-apply, ansi-color-filter-region)
(ansi-color-apply-on-region): Delete unrecognized control
sequences.
(ansi-color-apply-on-region): Delete unrecognized control sequences.
(ansi-color-apply): Build string list before calling concat.
2010-05-27 Chong Yidong <cyd@stupidchicken.com>
* progmodes/verilog-mode.el (verilog-type-font-keywords):
Use
font-lock-constant-face, not obsolete font-lock-reference-face.
* progmodes/verilog-mode.el (verilog-type-font-keywords):
Use
font-lock-constant-face, not obsolete font-lock-reference-face.
2010-05-27 Masatake YAMATO <yamato@redhat.com>
...
...
lisp/man.el
View file @
896114cf
...
...
@@ -754,6 +754,9 @@ POS defaults to `point'."
(
cond
((
eq
action
'lambda
)
(
not
(
string-match
"([^)]*\\'"
string
)))
((
equal
string
"-k"
)
;; Let SPC (minibuffer-complete-word) insert the space.
(
complete-with-action
action
'
(
"-k "
)
string
pred
))
(
t
(
let
((
table
(
cdr
Man-completion-cache
))
(
section
nil
)
...
...
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