diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-13 21:31:12 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-13 21:31:12 +0000 |
commit | e2bddc3892457803c64e81851066bc9821179998 (patch) | |
tree | b6eff0baec5252afc0eb28b10d40447e75d34547 /lisp/progmodes/awk-mode.el | |
parent | c55676a166776b610d98608ad283d7020945cd48 (diff) | |
download | emacs-e2bddc3892457803c64e81851066bc9821179998.tar.gz |
(awk-mode): Require cc-langs, not cc-mode.
Diffstat (limited to 'lisp/progmodes/awk-mode.el')
-rw-r--r-- | lisp/progmodes/awk-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/awk-mode.el b/lisp/progmodes/awk-mode.el index d214baff7e5..bd74d4298f9 100644 --- a/lisp/progmodes/awk-mode.el +++ b/lisp/progmodes/awk-mode.el @@ -118,7 +118,7 @@ Turning on AWK mode calls the value of the variable `awk-mode-hook' with no args, if that value is non-nil." (interactive) (kill-all-local-variables) - (require 'cc-mode) + (require 'cc-langs) (use-local-map c-mode-map) (setq major-mode 'awk-mode) (setq mode-name "AWK") |