aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-07-26 13:02:53 +0000
committerGerd Moellmann2000-07-26 13:02:53 +0000
commitdd717ef272aedd07a5aab90c57d4a5f8fdd2f581 (patch)
treef32d16541d1d0d4d63a1f012dd59535e257b39a2
parent5ed8d5afb0350e3e2404b295c7ea592941abe94d (diff)
downloademacs-dd717ef272aedd07a5aab90c57d4a5f8fdd2f581.tar.gz
emacs-dd717ef272aedd07a5aab90c57d4a5f8fdd2f581.zip
(makefile-mode-abbrev-table): Remove
duplicate definition. (makefile-mode): Remove duplicate setting of local-abbrev-table.
-rw-r--r--lisp/progmodes/make-mode.el9
1 files changed, 0 insertions, 9 deletions
diff --git a/lisp/progmodes/make-mode.el b/lisp/progmodes/make-mode.el
index 4a9e15aa293..adeec830ab4 100644
--- a/lisp/progmodes/make-mode.el
+++ b/lisp/progmodes/make-mode.el
@@ -368,12 +368,6 @@ The function must satisfy this calling convention:
368 () 368 ()
369 (define-abbrev-table 'makefile-mode-abbrev-table ())) 369 (define-abbrev-table 'makefile-mode-abbrev-table ()))
370 370
371(defvar makefile-mode-abbrev-table nil
372 "Abbrev table in use in Makefile buffers.")
373(if makefile-mode-abbrev-table
374 ()
375 (define-abbrev-table 'makefile-mode-abbrev-table ()))
376
377(defvar makefile-mode-map nil 371(defvar makefile-mode-map nil
378 "The keymap that is used in Makefile mode.") 372 "The keymap that is used in Makefile mode.")
379 373
@@ -610,9 +604,6 @@ makefile-special-targets-list:
610 ;; Other abbrevs. 604 ;; Other abbrevs.
611 (setq local-abbrev-table makefile-mode-abbrev-table) 605 (setq local-abbrev-table makefile-mode-abbrev-table)
612 606
613 ;; Other abbrevs.
614 (setq local-abbrev-table makefile-mode-abbrev-table)
615
616 ;; Filling. 607 ;; Filling.
617 (make-local-variable 'fill-paragraph-function) 608 (make-local-variable 'fill-paragraph-function)
618 (setq fill-paragraph-function 'makefile-fill-paragraph) 609 (setq fill-paragraph-function 'makefile-fill-paragraph)