diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2003-12-23 23:41:03 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2003-12-23 23:41:03 +0000 |
commit | 5eb3f511b1e15c1829db6d52f1ebf887d160f3bf (patch) | |
tree | 7d0422f7eee102b520703748d93647961cbd0033 /lisp | |
parent | 8b2a91da01412eea36b6dae388b730f709b9237b (diff) | |
download | emacs-5eb3f511b1e15c1829db6d52f1ebf887d160f3bf.tar.gz |
(fringe-query-style): Suggest `?' in minibuffer prompt (instead of
<SPACE>) to get the list of possible fringe modes. (<SPACE> only
works if both `partial-completion-mode' and `completion-auto-help' are
nil.)
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/fringe.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/fringe.el b/lisp/fringe.el index 039a41e5adc..16a21752b58 100644 --- a/lisp/fringe.el +++ b/lisp/fringe.el @@ -119,7 +119,7 @@ If ALL-FRAMES, the negation of the fringe values in Otherwise the negation of the fringe value in the currently selected frame parameter is used." (let ((mode (intern (completing-read - "Select fringe mode for all frames (SPACE for list): " + "Select fringe mode for all frames (type ? for list): " '(("none") ("default") ("left-only") ("right-only") ("half") ("minimal")) nil t)))) |