From: Eli Zaretskii Date: Sun, 11 Jun 2000 12:21:13 +0000 (+0000) Subject: Don't use _MSDOS_H_ as a symbol, use MSDOS_H_ instead. X-Git-Tag: emacs-pretest-21.0.90~3403 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ff96b5f4494cad2294221ea54b6003081616ecc8;p=emacs.git Don't use _MSDOS_H_ as a symbol, use MSDOS_H_ instead. --- diff --git a/src/ChangeLog b/src/ChangeLog index b55b0487a33..81ac1c418cb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2000-06-11 Eli Zaretskii + + * msdos.h: Don't use _MSDOS_H_ as a symbol, use MSDOS_H_ instead. + 2000-06-11 Gerd Moellmann * xmenu.c (xmenu_show): Case second parameter of lw_popup_menu diff --git a/src/msdos.h b/src/msdos.h index 76b133582da..038ec6aabe4 100644 --- a/src/msdos.h +++ b/src/msdos.h @@ -18,8 +18,8 @@ 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. */ -#ifndef _MSDOS_H_ -#define _MSDOS_H_ +#ifndef MSDOS_H_ +#define MSDOS_H_ #include @@ -166,4 +166,4 @@ void XMenuDestroy (Display *, XMenu *); #endif /* not HAVE_X_WINDOWS */ -#endif /* not _MSDOS_H_ */ +#endif /* not MSDOS_H_ */