Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
03c9ed77
Commit
03c9ed77
authored
Aug 17, 2000
by
Dave Love
Browse files
Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL. Don't
declare make_temp_name twice.
parent
232ccf27
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
9 deletions
+31
-9
src/ChangeLog
src/ChangeLog
+31
-0
src/lisp.h
src/lisp.h
+0
-9
No files found.
src/ChangeLog
View file @
03c9ed77
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
...
...
src/lisp.h
View file @
03c9ed77
...
...
@@ -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
/* In a cons, the markbit of the car is the gc mark bit */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment