diff options
| author | Paul Eggert | 2019-03-18 17:02:01 -0700 |
|---|---|---|
| committer | Paul Eggert | 2019-03-18 17:02:29 -0700 |
| commit | bc2a93d5b7c3d749b31927452e31b32bdb1b9108 (patch) | |
| tree | 9038a94278160988f7d37191d6863f94178e2cb1 /lisp/cedet/data-debug.el | |
| parent | 7f6c6253c939a2034b840c279c3e4dca973b263a (diff) | |
| download | emacs-bc2a93d5b7c3d749b31927452e31b32bdb1b9108.tar.gz emacs-bc2a93d5b7c3d749b31927452e31b32bdb1b9108.zip | |
Fix more regular expression typos
Problem reported by Mattias Engdegård in:
https://lists.gnu.org/r/emacs-devel/2019-03/msg00548.html
except that I didn’t address the issues involving Hebrew,
or involving comint-prompt-regexp.
* lisp/align.el (align-rules-list, align-exclude-rules-list):
* lisp/auth-source-pass.el (auth-source-pass--parse-secret)
(auth-source-pass--parse-data):
* lisp/cedet/data-debug.el (data-debug-next)
(data-debug-prev, data-debug-expand-or-contract):
* lisp/comint.el (comint-within-quotes):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* lisp/emulation/viper-ex.el (ex-cmd-complete):
* lisp/gnus/gnus-cite.el (gnus-message-search-citation-line):
* lisp/gnus/nnir.el (nnir-imap-end-of-input):
* lisp/mail/mail-extr.el (mail-extr-all-letters):
* lisp/minibuffer.el (minibuffer-maybe-quote-filename):
* lisp/nxml/rng-nxml.el (rng-complete-tag)
(rng-complete-end-tag, rng-complete-attribute-name):
* lisp/obsolete/vip.el (vip-get-ex-token, vip-get-ex-pat):
* lisp/org/org-pcomplete.el (org-thing-at-point):
* lisp/org/org.el (org-set-tags)
(org-increase-number-at-point)
(org-fill-line-break-nobreak-p):
* lisp/pcomplete.el (pcomplete-parse-comint-arguments):
* lisp/progmodes/ada-mode.el (ada-compile-goto-error):
* lisp/progmodes/cperl-mode.el (cperl-highlight-charclass)
(cperl-find-pods-heres, cperl-not-bad-style-regexp)
(cperl-regext-to-level-start):
* lisp/progmodes/ebnf-yac.el (ebnf-yac-skip-spaces):
* lisp/progmodes/flymake-proc.el (flymake-proc-master-tex-init):
* lisp/progmodes/flymake.el (flymake-diag-region):
* lisp/progmodes/fortran.el (fortran-current-line-indentation):
* lisp/progmodes/idlw-complete-structtag.el:
(idlwave-complete-structure-tag):
* lisp/progmodes/idlwave.el (idlwave-complete-sysvar-or-tag):
* lisp/progmodes/prolog.el (prolog-pred-end)
(prolog-clause-info):
* lisp/progmodes/ruby-mode.el (ruby-forward-sexp)
(ruby-backward-sexp):
* lisp/progmodes/verilog-mode.el (verilog-repair-open-comma):
* lisp/term.el (term-within-quotes):
* lisp/textmodes/bib-mode.el (bib-capitalize-title-stop-words):
* lisp/textmodes/refbib.el (r2b-capitalize-title-stop-words):
* lisp/textmodes/reftex-parse.el (reftex-nth-arg):
* lisp/textmodes/rst.el (rst-svn-rev):
* lisp/url/url-http.el (url-http-parse-response):
* test/lisp/progmodes/f90-tests.el (f90-test-bug3730):
Fix regular expression typos.
Diffstat (limited to 'lisp/cedet/data-debug.el')
| -rw-r--r-- | lisp/cedet/data-debug.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cedet/data-debug.el b/lisp/cedet/data-debug.el index ba312433d38..eeec6b5834b 100644 --- a/lisp/cedet/data-debug.el +++ b/lisp/cedet/data-debug.el | |||
| @@ -920,14 +920,14 @@ If PARENT is non-nil, it is somehow related as a parent to thing." | |||
| 920 | (interactive) | 920 | (interactive) |
| 921 | (forward-line 1) | 921 | (forward-line 1) |
| 922 | (beginning-of-line) | 922 | (beginning-of-line) |
| 923 | (skip-chars-forward " *-><[]" (point-at-eol))) | 923 | (skip-chars-forward "- *><[]" (point-at-eol))) |
| 924 | 924 | ||
| 925 | (defun data-debug-prev () | 925 | (defun data-debug-prev () |
| 926 | "Go to the previous line in the Ddebug buffer." | 926 | "Go to the previous line in the Ddebug buffer." |
| 927 | (interactive) | 927 | (interactive) |
| 928 | (forward-line -1) | 928 | (forward-line -1) |
| 929 | (beginning-of-line) | 929 | (beginning-of-line) |
| 930 | (skip-chars-forward " *-><[]" (point-at-eol))) | 930 | (skip-chars-forward "- *><[]" (point-at-eol))) |
| 931 | 931 | ||
| 932 | (defun data-debug-next-expando () | 932 | (defun data-debug-next-expando () |
| 933 | "Go to the next line in the Ddebug buffer. | 933 | "Go to the next line in the Ddebug buffer. |
| @@ -1014,7 +1014,7 @@ Do nothing if already contracted." | |||
| 1014 | (data-debug-current-line-expanded-p)) | 1014 | (data-debug-current-line-expanded-p)) |
| 1015 | (data-debug-contract-current-line) | 1015 | (data-debug-contract-current-line) |
| 1016 | (data-debug-expand-current-line)) | 1016 | (data-debug-expand-current-line)) |
| 1017 | (skip-chars-forward " *-><[]" (point-at-eol))) | 1017 | (skip-chars-forward "- *><[]" (point-at-eol))) |
| 1018 | 1018 | ||
| 1019 | (defun data-debug-expand-or-contract-mouse (event) | 1019 | (defun data-debug-expand-or-contract-mouse (event) |
| 1020 | "Expand or contract anything at event EVENT." | 1020 | "Expand or contract anything at event EVENT." |