X-Git-Url: http://git.chise.org/gitweb/?p=chise%2Fxemacs-chise.git.1;a=blobdiff_plain;f=src%2Fsymeval.h;h=caf44901b72066025c6403c64d079784b78ca5cf;hp=f51e9a4226a398749dade35f29425e20eafb85d3;hb=716cfba952c1dc0d2cf5c968971f3780ba728a89;hpb=d74da9234cc42e8018b1500105c3892a5c46d5e3 diff --git a/src/symeval.h b/src/symeval.h index f51e9a4..caf4490 100644 --- a/src/symeval.h +++ b/src/symeval.h @@ -23,8 +23,8 @@ Boston, MA 02111-1307, USA. */ /* Fsymbol_value checks whether XSYMBOL (sym)->value is one of these, * and does weird magic stuff if so */ -#ifndef _XEMACS_SYMEVAL_H_ -#define _XEMACS_SYMEVAL_H_ +#ifndef INCLUDED_symeval_h_ +#define INCLUDED_symeval_h_ enum symbol_value_type { @@ -325,10 +325,10 @@ void defvar_magic (CONST char *symbol_name, CONST struct symbol_value_forward *m #define DEFVAR_CONST_BOOL(lname, c_location) \ DEFVAR_SYMVAL_FWD (lname, c_location, SYMVAL_CONST_BOOLEAN_FORWARD, 0) #define DEFVAR_LISP_MAGIC(lname, c_location, magicfun) \ - DEFVAR_SYMVAL_FWD_OBJECT (lname, c_location, SYMVAL_OBJECT_FORWARD, magicfun); + DEFVAR_SYMVAL_FWD_OBJECT (lname, c_location, SYMVAL_OBJECT_FORWARD, magicfun) #define DEFVAR_INT_MAGIC(lname, c_location, magicfun) \ - DEFVAR_SYMVAL_FWD (lname, c_location, SYMVAL_FIXNUM_FORWARD, magicfun); + DEFVAR_SYMVAL_FWD (lname, c_location, SYMVAL_FIXNUM_FORWARD, magicfun) #define DEFVAR_BOOL_MAGIC(lname, c_location, magicfun) \ - DEFVAR_SYMVAL_FWD (lname, c_location, SYMVAL_BOOLEAN_FORWARD, magicfun); + DEFVAR_SYMVAL_FWD (lname, c_location, SYMVAL_BOOLEAN_FORWARD, magicfun) -#endif /* _XEMACS_SYMEVAL_H_ */ +#endif /* INCLUDED_symeval_h_ */