mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-28 07:45:00 +00:00
* lisp/emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
Also allow singlespace after single-letter capitals followed by a dot.
This commit is contained in:
parent
96479927c9
commit
1dcf791fef
@ -1,5 +1,8 @@
|
||||
2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
|
||||
Also allow singlespace after single-letter capitals followed by a dot.
|
||||
|
||||
* nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
|
||||
enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
|
||||
|
||||
|
@ -2046,7 +2046,7 @@ If the offending word is in a piece of quoted text, then it is skipped."
|
||||
;; piece of an abbreviation
|
||||
;; FIXME etc
|
||||
(looking-at
|
||||
"\\([a-z]\\|[iI]\\.?e\\|[eE]\\.?g\\)\\."))
|
||||
"\\([a-zA-Z]\\|[iI]\\.?e\\|[eE]\\.?g\\)\\."))
|
||||
(error t))))
|
||||
(if (checkdoc-autofix-ask-replace
|
||||
b e
|
||||
|
Loading…
Reference in New Issue
Block a user