diff options
Diffstat (limited to 'lisp/progmodes/meta-mode.el')
-rw-r--r-- | lisp/progmodes/meta-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/meta-mode.el b/lisp/progmodes/meta-mode.el index e207d22ff4a..8d3745be7c9 100644 --- a/lisp/progmodes/meta-mode.el +++ b/lisp/progmodes/meta-mode.el @@ -1,6 +1,6 @@ ;;; meta-mode.el --- major mode for editing Metafont or MetaPost sources -*- lexical-binding:t -*- -;; Copyright (C) 1997, 2001-2018 Free Software Foundation, Inc. +;; Copyright (C) 1997, 2001-2019 Free Software Foundation, Inc. ;; Author: Ulrik Vieth <vieth@thphy.uni-duesseldorf.de> ;; Version: 1.0 @@ -666,7 +666,7 @@ If the list was changed, sort the list and remove duplicates first." (let ((count 0)) (narrow-to-region (point) (save-excursion - (re-search-forward "[^\\\\\"]%\\|\n\\|\\'" nil t) + (re-search-forward "[^\\\"]%\\|\n\\|\\'" nil t) (backward-char) (point))) (while (re-search-forward "\\<\\sw+\\>\\|(\\|)" nil t) (save-excursion |