summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/regexp-opt.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-02-28 00:17:21 -0800
committerGlenn Morris <rgm@gnu.org>2012-02-28 00:17:21 -0800
commit44e97401cda5b464505ac798ae7f71dce0d2a06e (patch)
tree4d24550756a7e70b8bf593edd241ed0988d60c07 /lisp/emacs-lisp/regexp-opt.el
parenta34baa83cc0a770f9a5d845174281122dda91656 (diff)
downloademacs-44e97401cda5b464505ac798ae7f71dce0d2a06e.tar.gz
emacs-44e97401cda5b464505ac798ae7f71dce0d2a06e.tar.bz2
emacs-44e97401cda5b464505ac798ae7f71dce0d2a06e.zip
Standardize possessive apostrophe usage in manuals, docs, and comments
Ref: http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00649.html
Diffstat (limited to 'lisp/emacs-lisp/regexp-opt.el')
-rw-r--r--lisp/emacs-lisp/regexp-opt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/regexp-opt.el b/lisp/emacs-lisp/regexp-opt.el
index ac391fed2c2..6d12fe19277 100644
--- a/lisp/emacs-lisp/regexp-opt.el
+++ b/lisp/emacs-lisp/regexp-opt.el
@@ -143,7 +143,7 @@ This means the number of non-shy regexp grouping constructs
"Return a regexp to match a string in the sorted list STRINGS.
If PAREN non-nil, output regexp parentheses around returned regexp.
If LAX non-nil, don't output parentheses if it doesn't require them.
-Merges keywords to avoid backtracking in Emacs' regexp matcher."
+Merges keywords to avoid backtracking in Emacs's regexp matcher."
;; The basic idea is to find the shortest common prefix or suffix, remove it
;; and recurse. If there is no prefix, we divide the list into two so that
;; \(at least) one half will have at least a one-character common prefix.