diff options
| author | Paul Eggert | 2015-05-28 00:06:14 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-05-28 00:22:03 -0700 |
| commit | dfc2ef11a84d33eab916ff87b8537f8e28c05c92 (patch) | |
| tree | b196ac609a67987d5e1e756860de51b4361c8bd2 /lisp/emulation | |
| parent | 0fd5e6593af620863dcf90dff5d04631458e24cd (diff) | |
| download | emacs-dfc2ef11a84d33eab916ff87b8537f8e28c05c92.tar.gz emacs-dfc2ef11a84d33eab916ff87b8537f8e28c05c92.zip | |
Fix minor quoting problems in doc strings
Most of these fixes involve escaping grave accents that are
actually intended to be grave accents, not left quotes.
(Bug#20385)
Diffstat (limited to 'lisp/emulation')
| -rw-r--r-- | lisp/emulation/viper-cmd.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el index 5c91df90166..5e1620df57c 100644 --- a/lisp/emulation/viper-cmd.el +++ b/lisp/emulation/viper-cmd.el | |||
| @@ -4400,7 +4400,7 @@ and regexp replace." | |||
| 4400 | ;; etc. | 4400 | ;; etc. |
| 4401 | (defun viper-cycle-through-mark-ring () | 4401 | (defun viper-cycle-through-mark-ring () |
| 4402 | "Visit previous locations on the mark ring. | 4402 | "Visit previous locations on the mark ring. |
| 4403 | One can use `` and '' to temporarily jump 1 step back." | 4403 | One can use \\=`\\=` and '' to temporarily jump 1 step back." |
| 4404 | (let* ((sv-pt (point))) | 4404 | (let* ((sv-pt (point))) |
| 4405 | ;; if repeated `m,' command, pop the previously saved mark. | 4405 | ;; if repeated `m,' command, pop the previously saved mark. |
| 4406 | ;; Prev saved mark is actually prev saved point. It is used if the | 4406 | ;; Prev saved mark is actually prev saved point. It is used if the |