]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix broken regexps
authorMattias Engdegård <mattiase@acm.org>
Thu, 20 Feb 2020 10:25:25 +0000 (11:25 +0100)
committerMattias Engdegård <mattiase@acm.org>
Thu, 20 Feb 2020 10:25:25 +0000 (11:25 +0100)
Incorrect escaping prevented these from working as intended.
Found by relint.

* lisp/progmodes/cc-defs.el (c-search-backward-char-property):
Add missing backslash.
* lisp/progmodes/simula.el (simula-mode):
Remove one backslash too many.

lisp/progmodes/cc-defs.el
lisp/progmodes/simula.el

index 5ca64a0a752da6dda88f8fea766d0dd4c1bf241b..12be09d9b456fb58d2d53e9579b7ed88676b99ef 100644 (file)
@@ -1278,7 +1278,7 @@ point is then left undefined."
                    place ,property nil ,(or limit '(point-min)))))
      (when (> place ,(or limit '(point-min)))
        (goto-char place)
-       (search-backward-regexp "\\(n\\|.\\)")  ; to set the match-data.
+       (search-backward-regexp "\\(\n\\|.\\)") ; to set the match-data.
        (point))))
 
 (defun c-clear-char-property-with-value-function (from to property value)
index 5d5f180a5cfedb80916c43fc5d38a5bcdaeda8af..be3edfdc6e4c7a9a4dbace88275089a18cc68851 100644 (file)
@@ -367,7 +367,7 @@ Turning on SIMULA mode calls the value of the variable simula-mode-hook
 with no arguments, if that value is non-nil."
   (set (make-local-variable 'comment-column) 40)
   ;; (set (make-local-variable 'end-comment-column) 75)
-  (set (make-local-variable 'paragraph-start) "[ \t]*$\\|\\f")
+  (set (make-local-variable 'paragraph-start) "[ \t]*$\\|\f")
   (set (make-local-variable 'paragraph-separate) paragraph-start)
   (set (make-local-variable 'indent-line-function) 'simula-indent-line)
   (set (make-local-variable 'comment-start) "! ")