]> git.eshelyaron.com Git - emacs.git/commitdiff
Remedy ineffective backslashes and fix regexps
authorMattias EngdegΓ₯rd <mattiase@acm.org>
Sun, 8 May 2022 21:37:10 +0000 (23:37 +0200)
committerMattias EngdegΓ₯rd <mattiase@acm.org>
Wed, 11 May 2022 08:28:08 +0000 (10:28 +0200)
* lisp/info.el (Info-read-node-name-2): Double backslash for intended
escaping effect.
* lisp/term.el (term-send-function-key): Remove redundant `+`.
* lisp/leim/quail/indian.el:
* lisp/simple.el (scratch-buffer, get-scratch-buffer-create):
Remove ineffective backslashes.

lisp/info.el
lisp/leim/quail/indian.el
lisp/simple.el
lisp/term.el

index 514cf7b3f47aec2d5b31f55f68cb3651ecd276a9..e51f0b9537a17032dbf0c7d83bc4d66d2051ef33 100644 (file)
@@ -1834,7 +1834,7 @@ list of valid filename suffixes for Info files.  See
           ;; include it (without the suffix).
           (when (and (string-match suffix file)
                      ;; But exclude subfiles of split Info files.
-                     (not (string-match "\.info-[0-9]+" file))
+                     (not (string-match "\\.info-[0-9]+" file))
                      ;; And exclude backup files.
                      (not (string-match "~\\'" file)))
             (push (substring file 0 (match-beginning 0))
index 3bc03558c32d36bbcd134f4bcfbcc0f69d6b482b..6c58fdd40bea8f8d29e07f4cd39aed1947afce73 100644 (file)
@@ -730,10 +730,10 @@ Full key sequences are listed below:")
  ("`*" ?𑁙)
  ("9"  ?𑁯)
  ("`9" ?9)
- ("`\(" ?π‘š)
+ ("`(" ?π‘š)
  ("0"  ?𑁦)
  ("`0" ?0)
- ("`\)" ?𑁛)
+ ("`)" ?𑁛)
  ("`-" ?π‘œ)
  ("`_" ?𑁝)
  ("`=" ?π‘ž)
@@ -780,8 +780,8 @@ Full key sequences are listed below:")
  ("P"  ?𑀨)
  ("`p" ?𑁳)
  ("`P" ?𑁱)
- ("`\[" ?𑁴)
- ("`\{" ?𑁲)
+ ("`[" ?𑁴)
+ ("`{" ?𑁲)
  ("a"  ?π‘€Έ)
  ("A"  ?𑀆)
  ("`a" ?π‘€…)
@@ -863,7 +863,7 @@ Full key sequences are listed below:")
 ("`9" ?9)
 ("0"  ?ΰ₯¦)
 ("`0" ?0)
-("`\)" ?π‘‚»)
+("`)" ?π‘‚»)
 ("`\\" ?𑃀)
 ("`|" ?𑃁)
 ("`"  ?π‘‚—)
@@ -965,7 +965,7 @@ Full key sequences are listed below:")
 ("`9" ?9)
 ("0"  ?𑓐)
 ("`0" ?0)
-("`\)" ?𑓆)
+("`)" ?𑓆)
 ("`\\" ?ΰ₯€)
 ("`|" ?ΰ₯₯)
 ("`"  ?π‘’™)
@@ -1071,7 +1071,7 @@ Full key sequences are listed below:")
 ("`9" ?9)
 ("0"  ?𑇐)
 ("`0" ?0)
-("`\)" ?𑇇)
+("`)" ?𑇇)
 ("`\\" ?𑇅)
 ("`|" ?𑇆)
 ("`"  ?𑆛)
@@ -1188,9 +1188,9 @@ Full key sequences are listed below:")
 ("`8" ?π‘—‘)
 ("`*" ?π‘—ˆ)
 ("`9" ?π‘—’)
-("`\(" ?π‘—‰)
+("`(" ?π‘—‰)
 ("`0" ?π‘—“)
-("`\)" ?π‘—„)
+("`)" ?π‘—„)
 ("`\\" ?π‘—‚)
 ("`|" ?π‘—ƒ)
 ("`"  ?π‘–˜)
index edcc226bfa8997db07fc45c11d12c35ba8618928..89fb0ea97ecb5710ce160f7478dec14cf52d4ed1 100644 (file)
@@ -10214,7 +10214,7 @@ the number of seconds east of Greenwich.")
   )
 
 (defun get-scratch-buffer-create ()
-  "Return the \*scratch\* buffer, creating a new one if needed."
+  "Return the *scratch* buffer, creating a new one if needed."
   (or (get-buffer "*scratch*")
       (let ((scratch (get-buffer-create "*scratch*")))
         ;; Don't touch the buffer contents or mode unless we know that
@@ -10227,7 +10227,7 @@ the number of seconds east of Greenwich.")
         scratch)))
 
 (defun scratch-buffer ()
-  "Switch to the \*scratch\* buffer.
+  "Switch to the *scratch* buffer.
 If the buffer doesn't exist, create it first."
   (interactive)
   (pop-to-buffer-same-window (get-scratch-buffer-create)))
index 640478b59a27cb381018b5641fbe2616ac345cf0..54e19a3ea92650cffb350592a003c00878743ffd 100644 (file)
@@ -1430,7 +1430,7 @@ Entry to this mode runs the hooks on `term-mode-hook'."
     (when (and (= (length key) 1)
                (symbolp (elt key 0)))
       (let ((name (symbol-name (elt key 0))))
-        (when (string-match "\\`f\\([0-9]++\\)\\'" name)
+        (when (string-match "\\`f\\([0-9]+\\)\\'" name)
           (let* ((num (string-to-number (match-string 1 name)))
                  (ansi
                   (cond