diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:30:13 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:32:53 -0800 |
commit | 6b4a97c1c78f39ce890d100acceceb652d14e20d (patch) | |
tree | 9d9f8347a952226adcd73680ed89c5679d6e5326 /lisp/ibuf-ext.el | |
parent | 269796288a43520a1dcc481337af472d086faaa4 (diff) | |
download | emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.gz |
Fix some quoting glitches in doc strings
Diffstat (limited to 'lisp/ibuf-ext.el')
-rw-r--r-- | lisp/ibuf-ext.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el index 44c7e74839f..13223de6e7e 100644 --- a/lisp/ibuf-ext.el +++ b/lisp/ibuf-ext.el @@ -1321,8 +1321,8 @@ matches against '/a/b/c.d'." (define-ibuffer-filter basename "Limit current view to buffers with file basename matching QUALIFIER. -For example, for a buffer associated with file '/a/b/c.d', this -matches against 'c.d'." +For example, for a buffer associated with file `/a/b/c.d', this +matches against `c.d'." (:description "file basename" :reader (read-from-minibuffer "Filter by file name, without directory part (regex): ")) @@ -1335,7 +1335,7 @@ matches against 'c.d'." The separator character (typically `.') is not part of the pattern. For example, for a buffer associated with file -'/a/b/c.d', this matches against 'd'." +`/a/b/c.d', this matches against `d'." (:description "filename extension" :reader (read-from-minibuffer "Filter by filename extension without separator (regex): ")) @@ -1596,7 +1596,7 @@ to move by. The default is `ibuffer-marked-char'." "Hide all of the currently marked lines." (interactive) (if (= (ibuffer-count-marked-lines) 0) - (message "No buffers marked; use 'm' to mark a buffer") + (message "No buffers marked; use `m' to mark a buffer") (let ((count (ibuffer-map-marked-lines #'(lambda (_buf _mark) |