diff lisp/progmodes/make-mode.el @ 11638:2b1d5f2e99cc

(makefile-mode): Set dabbrev-abbrev-skip-leading-regexp.
author Richard M. Stallman <rms@gnu.org>
date Mon, 01 May 1995 17:16:40 +0000
parents b9084912762f
children f7638ab47de7
line wrap: on
line diff
--- a/lisp/progmodes/make-mode.el	Mon May 01 15:52:55 1995 +0000
+++ b/lisp/progmodes/make-mode.el	Mon May 01 17:16:40 1995 +0000
@@ -14,7 +14,7 @@
 
 ;; So, for the meantime, this is not the default mode for makefiles.
 
-;; $Id: makefile.el,v 1.18 1994/10/12 08:55:27 simon Exp rms $
+;; $Id: makefile.el,v 1.19 1994/10/30 21:20:42 rms Exp rms $
 
 ;; This file is part of GNU Emacs.
 
@@ -505,6 +505,10 @@
   (make-local-variable 'imenu-create-index-function)
   (setq imenu-create-index-function 'makefile-menu-index-function)
 
+  ;; Dabbrev.
+  (make-local-variable 'dabbrev-abbrev-skip-leading-regexp)
+  (setq dabbrev-abbrev-skip-leading-regexp "\\$")
+
   ;; Comment stuff.
   (make-local-variable 'comment-start)
   (setq comment-start "#")