diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 7 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index bc1161f169d..5f80ccdd60b 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2014-01-05 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Spelling fixes. | ||
| 4 | * Makefile.in (regex.o): Remove reference to no-longer-used macros | ||
| 5 | CONFIG_BROKETS and INHIBIT_STRING_HEADER. "BROKETS" was a | ||
| 6 | misspelling anyway.... | ||
| 7 | |||
| 1 | 2013-12-14 Paul Eggert <eggert@cs.ucla.edu> | 8 | 2013-12-14 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 9 | ||
| 3 | Use bool for boolean, focusing on headers. | 10 | Use bool for boolean, focusing on headers. |
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 91a8e74819f..56cdc09e0fe 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -315,8 +315,7 @@ test-distrib${EXEEXT}: ${srcdir}/test-distrib.c | |||
| 315 | cd ../lib && $(MAKE) libgnu.a | 315 | cd ../lib && $(MAKE) libgnu.a |
| 316 | 316 | ||
| 317 | regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h $(config_h) | 317 | regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h $(config_h) |
| 318 | ${CC} -c ${CPP_CFLAGS} -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \ | 318 | ${CC} -c ${CPP_CFLAGS} ${srcdir}/../src/regex.c |
| 319 | ${srcdir}/../src/regex.c | ||
| 320 | 319 | ||
| 321 | etags${EXEEXT}: ${srcdir}/etags.c regex.o $(NTLIB) $(config_h) | 320 | etags${EXEEXT}: ${srcdir}/etags.c regex.o $(NTLIB) $(config_h) |
| 322 | $(CC) ${ALL_CFLAGS} -DEMACS_NAME="\"GNU Emacs\"" \ | 321 | $(CC) ${ALL_CFLAGS} -DEMACS_NAME="\"GNU Emacs\"" \ |