]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix up previous hideif change to avoid a compilation warning
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 3 Jun 2021 08:39:39 +0000 (10:39 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 3 Jun 2021 08:39:39 +0000 (10:39 +0200)
* lisp/progmodes/hideif.el
(hide-ifdef-expand-reinclusion-protection): Move to avoid a
compilation warning.

lisp/progmodes/hideif.el

index c14d3418a7bcf92178e5e747616b58c88d89210d..d127575255a93f5771a75158eea3f475c92fd2c5 100644 (file)
   :type '(choice (const nil) string)
   :version "25.1")
 
+(define-obsolete-variable-alias 'hide-ifdef-expand-reinclusion-protection
+  'hide-ifdef-expand-reinclusion-guard "28.1")
+
 (defcustom hide-ifdef-expand-reinclusion-guard t
   "Non-nil means don't hide an entire header file enclosed by #ifndef...#endif.
 Most C/C++ headers are usually wrapped with ifdefs to prevent re-inclusion:
@@ -171,9 +174,6 @@ outermost #if is always visible."
   :type 'boolean
   :version "25.1")
 
-(define-obsolete-variable-alias 'hide-ifdef-expand-reinclusion-protection
-  'hide-ifdef-expand-reinclusion-guard "28.1")
-
 (defcustom hide-ifdef-header-regexp
   "\\.h\\(h\\|xx\\|pp\\|\\+\\+\\)?\\'"
   "C/C++ header file name patterns to determine if current buffer is a header.