summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authordalanicolai <dalanicolai@gmail.com>2021-05-08 13:59:03 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2021-05-08 13:59:03 +0200
commitfdeb1a3dc77ccac28e6cf91b9cc4aa43f3060e7a (patch)
treefaf645fb71624f307b1ce4003079c46fe31cfea8 /lisp
parenta6757d10e859a6a71020369bbbc822272bc0540b (diff)
downloademacs-fdeb1a3dc77ccac28e6cf91b9cc4aa43f3060e7a.tar.gz
emacs-fdeb1a3dc77ccac28e6cf91b9cc4aa43f3060e7a.tar.bz2
emacs-fdeb1a3dc77ccac28e6cf91b9cc4aa43f3060e7a.zip
Mention that Emacs is usually case-insensitive in a couple of places
* doc/lispref/searching.texi (Regular Expressions): Mention `case-fold-search'. * lisp/emacs-lisp/re-builder.el (re-builder): Mention case sensitivity toggles (bug#47534). Copyright-paperwork-exempt: yes
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/re-builder.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/re-builder.el b/lisp/emacs-lisp/re-builder.el
index 455fcac701f..b695dff55a4 100644
--- a/lisp/emacs-lisp/re-builder.el
+++ b/lisp/emacs-lisp/re-builder.el
@@ -341,7 +341,12 @@ the regexp builder. It displays a buffer named \"*RE-Builder*\"
in another window, initially containing an empty regexp.
As you edit the regexp in the \"*RE-Builder*\" buffer, the
-matching parts of the target buffer will be highlighted."
+matching parts of the target buffer will be highlighted.
+
+Case-sensitivity can be toggled with \\[reb-toggle-case]. The
+regexp builder supports three different forms of input which can
+be set with \\[reb-change-syntax]. More options and details are
+provided in the initial comment of`re-builder.el'."
(interactive)
(if (and (string= (buffer-name) reb-buffer)
(reb-mode-buffer-p))