diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-12 18:33:03 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-12 18:36:49 +0200 |
commit | fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030 (patch) | |
tree | bdd67b63d55da0b41e367feecc20e02ada92e92d /lisp/progmodes | |
parent | 79113b5e4a7d69ec0fb3401b763292d91b54632e (diff) | |
download | emacs-fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030.tar.gz emacs-fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030.tar.bz2 emacs-fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030.zip |
; Fix symbol quoting typos
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/cperl-mode.el | 6 | ||||
-rw-r--r-- | lisp/progmodes/elisp-mode.el | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el index 4f3ca924dd9..165834cc20f 100644 --- a/lisp/progmodes/cperl-mode.el +++ b/lisp/progmodes/cperl-mode.el @@ -1304,7 +1304,7 @@ package name and for the version.") (regexp ,cperl--version-regexp))) ,cperl--ws*-rx (group-n 3 (or ";" "{"))) - "A regular expression to collect package names for `imenu`. + "A regular expression to collect package names for `imenu'. Catches \"package NAME;\", \"package NAME VERSION;\", \"package NAME BLOCK\" and \"package NAME VERSION BLOCK.\" Contains three groups: One for the keyword \"package\", one for the package @@ -1345,7 +1345,7 @@ heading text.") `(or ,cperl--package-for-imenu-rx ,cperl--sub-name-for-imenu-rx ,cperl--pod-heading-rx) - "A regular expression to collect stuff that goes into the `imenu` index. + "A regular expression to collect stuff that goes into the `imenu' index. Covers packages, subroutines, and POD headings.") ;; end of eval-and-compiled stuff @@ -5454,7 +5454,7 @@ indentation and initial hashes. Behaves usually outside of comment." (defvar cperl-imenu-pod-keywords '("=head")) (defun cperl-imenu--create-perl-index () - "Implement `imenu-create-index-function` for CPerl mode. + "Implement `imenu-create-index-function' for CPerl mode. This function relies on syntaxification to exclude lines which look like declarations but actually are part of a string, a comment, or POD." diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index 483bf9d2edd..22150c7d825 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el @@ -883,7 +883,7 @@ there are no matches for variables." (secondary-xrefs nil)) ; other xrefs (let ((temp elisp-xref-find-def-functions)) - ;; FIXME: The `elisp-xref-find-def-functions` function interface does + ;; FIXME: The `elisp-xref-find-def-functions' function interface does ;; not allow for namespace filtering so we tacitly assume they all match. (while (and (null xrefs) temp) |