Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
2fa0eedf
Commit
2fa0eedf
authored
Nov 26, 2001
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(mallocobj): Simplify logic using auxiliary vars.
parent
f9fa0e8a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
src/ChangeLog
src/ChangeLog
+4
-0
src/Makefile.in
src/Makefile.in
+8
-12
No files found.
src/ChangeLog
View file @
2fa0eedf
2001-11-26 Richard M. Stallman <rms@gnu.org>
* Makefile.in (mallocobj): Simplify logic using auxiliary vars.
2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
* textprop.c (set_text_properties_1): Clearly mark that the
...
...
src/Makefile.in
View file @
2fa0eedf
...
...
@@ -570,19 +570,15 @@ termcapobj = tparam.o
#ifndef SYSTEM_MALLOC
#ifdef DOUG_LEA_MALLOC
#ifdef REL_ALLOC
mallocobj
=
ralloc.o vm-limit.o
#else /* ! defined (REL_ALLOC) */
mallocobj
=
vm-limit.o
#endif /* ! defined (REL_ALLOC) */
#else /* ! defined (DOUG_LEA_MALLOC) */
#ifndef DOUG_LEA_MALLOC
gmallocobj
=
gmalloc.o
#endif
#ifdef REL_ALLOC
mallocobj
=
gmalloc.o ralloc.o vm-limit.o
#else /* ! defined (REL_ALLOC) */
mallocobj
=
gmalloc.o vm-limit.o
#endif /* ! defined (REL_ALLOC) */
#endif /* ! defined (DOUG_LEA_MALLOC) */
rallocobj
=
ralloc.o
#endif
mallocobj
=
$(gmallocobj)
$(rallocobj)
vm-limit.o
#endif /* SYSTEM_MALLOC */
...
...
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