diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-11-18 09:17:20 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-11-18 09:17:55 -0800 |
commit | bb4303c536a2ac5fe683a711ef8072074f77670e (patch) | |
tree | b2d254f657728f61262d3b6fe58d972756fcc292 /lisp/progmodes/hideshow.el | |
parent | 3e309ad86c8f11765d28a875bb2299d0e214d16d (diff) | |
download | emacs-bb4303c536a2ac5fe683a711ef8072074f77670e.tar.gz emacs-bb4303c536a2ac5fe683a711ef8072074f77670e.tar.bz2 emacs-bb4303c536a2ac5fe683a711ef8072074f77670e.zip |
Quote symbols in docstrings using `'
Be more systematic about quoting symbols `like-this' rather than
`like-this or 'like-this' in docstrings. This follows up Artur
Malabarba's email in:
http://lists.gnu.org/archive/html/emacs-devel/2015-11/msg01647.html
Diffstat (limited to 'lisp/progmodes/hideshow.el')
-rw-r--r-- | lisp/progmodes/hideshow.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/hideshow.el b/lisp/progmodes/hideshow.el index ebc5e2404c8..7dfef5fae4c 100644 --- a/lisp/progmodes/hideshow.el +++ b/lisp/progmodes/hideshow.el @@ -469,9 +469,9 @@ KIND is either `code' or `comment'. Optional fourth arg B-OFFSET when added to B specifies the actual buffer position where the block begins. Likewise for optional fifth arg E-OFFSET. If unspecified they are taken to be 0 (zero). The following properties are set -in the overlay: 'invisible 'hs 'hs-b-offset 'hs-e-offset. Also, +in the overlay: `invisible' `hs' `hs-b-offset' `hs-e-offset'. Also, depending on variable `hs-isearch-open', the following properties may -be present: 'isearch-open-invisible 'isearch-open-invisible-temporary. +be present: `isearch-open-invisible' `isearch-open-invisible-temporary'. If variable `hs-set-up-overlay' is non-nil it should specify a function to call with the newly initialized overlay." (unless b-offset (setq b-offset 0)) |