]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL. Don't
authorDave Love <fx@gnu.org>
Thu, 17 Aug 2000 14:17:37 +0000 (14:17 +0000)
committerDave Love <fx@gnu.org>
Thu, 17 Aug 2000 14:17:37 +0000 (14:17 +0000)
declare make_temp_name twice.

src/ChangeLog
src/lisp.h

index a17b16c4e2d0d8522b15ae8eb5ad93ebf4e09a9c..26b9cd339d5142c880e7f864274c43d4b00d2573 100644 (file)
@@ -1,3 +1,34 @@
+2000-08-17  Dave Love  <fx@gnu.org>
+
+       * lisp.h: Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL.  Don't
+       declare make_temp_name twice.
+
+       * lread.c: Prototype readevalloop, load_unwind,
+       load_descriptor_unwind.
+       (unreadpure): Give it an arg.
+
+       * unexalpha.c: Prototype fatal_unexec, mark_x,
+       update_dynamic_symbols.  Declare unexec as void.
+
+       * cm.c [HAVE_TERMCAP_H]: Include <termcap.h>.
+       [!HAVE_TERMCAP_H]: Prototype tputs, tgoto.
+
+       * alloc.c (lisp_malloc): Declare with POINTER_TYPE.
+       [SYSTEM_MALLOC]: Make decls in malloc.h conditional on
+       DOUG_LEA_MALLOC.
+
+       * alloca.c: Use #error.
+       [POINTER_TYPE]: Use it.
+
+       * eval.c (Fdefvar): Doc fix.
+
+       * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Avoid
+       INITIALIZE_INTERVAL.
+
+       * buffer.h: Avoid DECLARE_INTERVALS.
+
+       * config.in: Add size_t.
+
 2000-08-17  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * w16select.c (set_clipboard_data): If there's not enough memory
index dd98e4288e97a5c861e97c6fcd6ea60488444844..62ead3e4d36386009116328ccce97f0baab2c0d7 100644 (file)
@@ -572,15 +572,6 @@ typedef struct interval *INTERVAL;
 #define CHECK_STRING_OR_BUFFER(x, i) \
   { if (!STRINGP ((x)) && !BUFFERP ((x))) \
       x = wrong_type_argument (Qbuffer_or_string_p, (x)); }
-
-/* Macro used to conditionally compile intervals into certain data
-   structures.  See, e.g., struct Lisp_String below.  */
-#define DECLARE_INTERVALS INTERVAL intervals;
-
-/* Macro used to conditionally compile interval initialization into
-   certain code.  See, e.g., alloc.c.  */
-#define INITIALIZE_INTERVAL(ptr,val) ptr->intervals = val
-
 \f
 /* In a cons, the markbit of the car is the gc mark bit */