aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias EngdegÄrd2020-11-06 23:02:29 +0100
committerMattias EngdegÄrd2020-11-06 23:02:29 +0100
commitb7b9bbb93d669f08fd485cb93bcd4caf7ad13613 (patch)
treedaa36540e99546fbf1417de37cb574d73331f2b5
parent6e9564f09a223f1c3f964e04905ecb3f235fa2f5 (diff)
downloademacs-b7b9bbb93d669f08fd485cb93bcd4caf7ad13613.tar.gz
emacs-b7b9bbb93d669f08fd485cb93bcd4caf7ad13613.zip
Rectify skip-set argument
* lisp/gnus/gnus-search.el (gnus-search-query-end-of-input): Remove brackets that don't belong. Found by relint.
-rw-r--r--lisp/gnus/gnus-search.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-search.el b/lisp/gnus/gnus-search.el
index 7ee7c53aca5..07bd2bca1bb 100644
--- a/lisp/gnus/gnus-search.el
+++ b/lisp/gnus/gnus-search.el
@@ -701,7 +701,7 @@ return one word."
701 701
702(defun gnus-search-query-end-of-input () 702(defun gnus-search-query-end-of-input ()
703 "Are we at the end of input?" 703 "Are we at the end of input?"
704 (skip-chars-forward "[[:blank:]]") 704 (skip-chars-forward "[:blank:]")
705 (looking-at "$")) 705 (looking-at "$"))
706 706
707;;; Search engines 707;;; Search engines