aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2001-01-31 20:32:40 +0000
committerGerd Moellmann <[email protected]>2001-01-31 20:32:40 +0000
commit843c999901def3fef669f6006bd41931df75dc92 (patch)
tree71f982a6c31d1b972caa5b82171aa8dd9e9c1ae6
parent7442878f82e55dfbc8372e025ab63a59bd2ae03f (diff)
(EMACS_FRAME_H_INCLUDED): Use an include blocker
identifier which is not reserved by Standard C.
-rw-r--r--src/frame.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/frame.h b/src/frame.h
index ccbb29c2f2..947f7a5f6b 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -18,10 +18,12 @@ along with GNU Emacs; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-/* Don't multiply include: dispextern.h includes macterm.h which includes frame.h
- some emacs source includes both dispextern.h and frame.h */
-#ifndef _XFRAME_H_
-#define _XFRAME_H_
+/* Don't multiply include: dispextern.h includes macterm.h which
+ includes frame.h some emacs source includes both dispextern.h and
+ frame.h */
+
+#ifndef EMACS_FRAME_H_INCLUDED
+#define EMACS_FRAME_H_INCLUDED
/* Miscellanea. */
@@ -781,4 +783,4 @@ extern Lisp_Object selected_frame;
? make_float ((double) (Y) / CANON_Y_UNIT (F)) \
: make_number ((Y) / CANON_Y_UNIT (F)))
-#endif /* not defined _FRAME_H_ */
+#endif /* not EMACS_FRAME_H_INCLUDED */