(indent-relative, insert-tab):
authorRichard M. Stallman <rms@gnu.org>
Sun, 24 Aug 1997 16:26:31 +0000 (16:26 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 24 Aug 1997 16:26:31 +0000 (16:26 +0000)
Don't call expand-abbrev unless preceding character is a word char.

lisp/indent.el

index 6639f4b..69e282b 100644 (file)
@@ -56,7 +56,8 @@
 
 (defun insert-tab (&optional prefix-arg)
   (let ((count (prefix-numeric-value prefix-arg)))
-    (if abbrev-mode
+    (if (and abbrev-mode
+            (eq (char-syntax (preceding-char)) ?w))
        (expand-abbrev))
     (if indent-tabs-mode
        (insert-char ?\t count)
@@ -338,7 +339,9 @@ An indent point is a non-whitespace character following whitespace.
 If the previous nonblank line has no indent points beyond the
 column point starts at, `tab-to-tab-stop' is done instead."
   (interactive "P")
-  (if abbrev-mode (expand-abbrev))
+  (if (and abbrev-mode
+          (eq (char-syntax (preceding-char)) ?w))
+      (expand-abbrev))
   (let ((start-column (current-column))
        indent)
     (save-excursion