emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 2932592 1/2: ; * lisp/emacs-lisp/checkdoc.el (checkdoc-in-abbrevi


From: Stefan Kangas
Subject: master 2932592 1/2: ; * lisp/emacs-lisp/checkdoc.el (checkdoc-in-abbreviation-p): Doc fix.
Date: Fri, 24 Sep 2021 06:28:23 -0400 (EDT)

branch: master
commit 2932592469ae2bc9081f01fa9726b5bae2cc9fa7
Author: Stefan Kangas <stefan@marxist.se>
Commit: Stefan Kangas <stefan@marxist.se>

    ; * lisp/emacs-lisp/checkdoc.el (checkdoc-in-abbreviation-p): Doc fix.
---
 lisp/emacs-lisp/checkdoc.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el
index cae65eb..06720cf 100644
--- a/lisp/emacs-lisp/checkdoc.el
+++ b/lisp/emacs-lisp/checkdoc.el
@@ -2093,7 +2093,7 @@ The text checked is between START and LIMIT."
 
 (defun checkdoc-in-abbreviation-p (begin)
   "Return non-nil if point is at an abbreviation.
-Examples of abbreviations handled: \"e.g.\", \"i.e.\", \"cf.\"."
+Examples of recognized abbreviations: \"e.g.\", \"i.e.\", \"cf.\"."
   (save-excursion
     (goto-char begin)
     (condition-case nil
@@ -2120,7 +2120,7 @@ Examples of abbreviations handled: \"e.g.\", \"i.e.\", 
\"cf.\"."
                   "etc"                           ; etc.
                   "vs"                            ; vs.
                   ;; Some non-standard or less common ones that we
-                  ;; might as well ignore.
+                  ;; might as well accept.
                   "Inc" "Univ" "misc" "resp")
                  "."))))
       (error t))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]