summaryrefslogtreecommitdiff
path: root/lisp/progmodes/autoconf.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2003-05-13 20:59:15 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2003-05-13 20:59:15 +0000
commitf4103aec45930a9daf55960f5f81c778be3d83c5 (patch)
treedc38cf9e21be30b764ff82f10a72dda6c329f5e1 /lisp/progmodes/autoconf.el
parentf7a2f2c6543d35057fa994c91f47271d6c951ec3 (diff)
downloademacs-f4103aec45930a9daf55960f5f81c778be3d83c5.tar.gz
(autoconf-current-defun-function): Copy the syntax table before modifying it.
Diffstat (limited to 'lisp/progmodes/autoconf.el')
-rw-r--r--lisp/progmodes/autoconf.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/autoconf.el b/lisp/progmodes/autoconf.el
index 51e23980ff8..a2a2b63a85a 100644
--- a/lisp/progmodes/autoconf.el
+++ b/lisp/progmodes/autoconf.el
@@ -4,7 +4,7 @@
;; Author: Dave Love <fx@gnu.org>
;; Keywords: languages
-;; $Revision: 1.2 $
+;; $Revision: 1.3 $
;; This file is part of GNU Emacs.
@@ -73,7 +73,7 @@
This version looks back for an AC_DEFINE or AC_SUBST. It will stop
searching backwards at another AC_... command."
(save-excursion
- (with-syntax-table autoconf-mode-syntax-table
+ (with-syntax-table (copy-syntax-table autoconf-mode-syntax-table)
(modify-syntax-entry ?_ "w")
(if (re-search-backward autoconf-definition-regexp
(save-excursion (beginning-of-defun) (point))