From: Richard M. Stallman Date: Thu, 26 Oct 1995 03:13:43 +0000 (+0000) Subject: Provide hideif; require cc-mode. X-Git-Tag: emacs-19.34~2563 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=048fb1b7485d41ff405442c86fd718595e3e95e6;p=emacs.git Provide hideif; require cc-mode. --- diff --git a/lisp/progmodes/hideif.el b/lisp/progmodes/hideif.el index a4427ca2ba9..b6d7ee6f3be 100644 --- a/lisp/progmodes/hideif.el +++ b/lisp/progmodes/hideif.el @@ -109,6 +109,8 @@ ;;; Code: +(require 'cc-mode) + (defvar hide-ifdef-mode-submap nil "Keymap used with Hide-Ifdef mode.") @@ -1034,5 +1036,7 @@ Set top and bottom of ifdef block." (error "No define list for %s" name)) (if hide-ifdef-hiding (hide-ifdefs)))) +(provide 'hideif) + ;;; hideif.el ends here