diff options
| author | Joakim Verona | 2011-11-22 15:39:42 +0100 |
|---|---|---|
| committer | Joakim Verona | 2011-11-22 15:39:42 +0100 |
| commit | 40bb789236e486a3f36eefb2840c293369ce2af3 (patch) | |
| tree | 8e81d3aa5f232ec7f2c5187c683cb0998d2dc4e2 /lib-src | |
| parent | 62318aed495a48e24ff73fe79e420dd801df3189 (diff) | |
| parent | a8e1496d750ab0f571b3412ff61aaa4da640a036 (diff) | |
| download | emacs-40bb789236e486a3f36eefb2840c293369ce2af3.tar.gz emacs-40bb789236e486a3f36eefb2840c293369ce2af3.zip | |
upstream
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 14 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 4 | ||||
| -rw-r--r-- | lib-src/emacsclient.c | 2 | ||||
| -rw-r--r-- | lib-src/etags.c | 6 | ||||
| -rw-r--r-- | lib-src/update-game-score.c | 2 |
5 files changed, 16 insertions, 12 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index a8f9a0ac4be..d043f41962e 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-11-14 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * Makefile.in (all): Make sure "all" is the first target. | ||
| 4 | |||
| 1 | 2011-10-27 Juanma Barranquero <lekktu@gmail.com> | 5 | 2011-10-27 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 6 | ||
| 3 | * emacsclient.c (w32_getenv): Silence compiler warnings. | 7 | * emacsclient.c (w32_getenv): Silence compiler warnings. |
| @@ -3638,7 +3642,7 @@ | |||
| 3638 | (lang_names): Add a NULL member for every entry, added an entry | 3642 | (lang_names): Add a NULL member for every entry, added an entry |
| 3639 | for makefiles. | 3643 | for makefiles. |
| 3640 | (Makefile_targets): New function. | 3644 | (Makefile_targets): New function. |
| 3641 | (Texinfo_nodes): Rename from Texinfo_fuctions and made | 3645 | (Texinfo_nodes): Rename from Texinfo_functions and made |
| 3642 | it conformant to the style of the rest of the code. | 3646 | it conformant to the style of the rest of the code. |
| 3643 | 3647 | ||
| 3644 | 2001-01-13 Gerd Moellmann <gerd@gnu.org> | 3648 | 2001-01-13 Gerd Moellmann <gerd@gnu.org> |
| @@ -4630,9 +4634,9 @@ | |||
| 4630 | 4634 | ||
| 4631 | 1997-05-12 Francesco Potortì <F.Potorti@cnuce.cnr.it> | 4635 | 1997-05-12 Francesco Potortì <F.Potorti@cnuce.cnr.it> |
| 4632 | 4636 | ||
| 4633 | * etags.c (Cplusplus_suffixes): .pdb is Postscript with C syntax. | 4637 | * etags.c (Cplusplus_suffixes): .pdb is PostScript with C syntax. |
| 4634 | (Postscript_suffixes): .ps is Postscript. | 4638 | (Postscript_suffixes): .ps is PostScript. |
| 4635 | (lang_names): Add Postscript. | 4639 | (lang_names): Add postscript. |
| 4636 | (Postscript_functions): New function. | 4640 | (Postscript_functions): New function. |
| 4637 | (TEX_decode_env): Close minor memory leak. | 4641 | (TEX_decode_env): Close minor memory leak. |
| 4638 | (just_read_file): Correct the char number of the tag. | 4642 | (just_read_file): Correct the char number of the tag. |
| @@ -5130,7 +5134,7 @@ | |||
| 5130 | 5134 | ||
| 5131 | 1996-03-15 Anders Lindgren <andersl@csd.uu.se> | 5135 | 1996-03-15 Anders Lindgren <andersl@csd.uu.se> |
| 5132 | 5136 | ||
| 5133 | * etags.c: Prolog language totaly rewritten. | 5137 | * etags.c: Prolog language totally rewritten. |
| 5134 | (Prolog_functions): Rewritten from scratch. | 5138 | (Prolog_functions): Rewritten from scratch. |
| 5135 | (skip_comment, prolog_getit): Removed. | 5139 | (skip_comment, prolog_getit): Removed. |
| 5136 | (prolog_skip_comment): New function, like old skip_comment. | 5140 | (prolog_skip_comment): New function, like old skip_comment. |
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 499305ec512..c5e117f66f9 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -175,11 +175,11 @@ ALL_CFLAGS = ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${LDFLAGS} ${CPPFLAGS} ${CFLAGS} | |||
| 175 | LINK_CFLAGS = ${BASE_CFLAGS} ${LDFLAGS} ${CFLAGS} | 175 | LINK_CFLAGS = ${BASE_CFLAGS} ${LDFLAGS} ${CFLAGS} |
| 176 | CPP_CFLAGS = ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${CPPFLAGS} ${CFLAGS} | 176 | CPP_CFLAGS = ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${CPPFLAGS} ${CFLAGS} |
| 177 | 177 | ||
| 178 | all: ${EXE_FILES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} ${STAMP_INST_SCRIPTS} ${STAMP_SCRIPTS} | ||
| 179 | |||
| 178 | LOADLIBES = ../lib/libgnu.a $(LIBS_SYSTEM) | 180 | LOADLIBES = ../lib/libgnu.a $(LIBS_SYSTEM) |
| 179 | $(EXE_FILES): ../lib/libgnu.a | 181 | $(EXE_FILES): ../lib/libgnu.a |
| 180 | 182 | ||
| 181 | all: ${EXE_FILES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} ${STAMP_INST_SCRIPTS} ${STAMP_SCRIPTS} | ||
| 182 | |||
| 183 | ## These targets copy the scripts into the build directory so that | 183 | ## These targets copy the scripts into the build directory so that |
| 184 | ## they can be run from there in an uninstalled Emacs. | 184 | ## they can be run from there in an uninstalled Emacs. |
| 185 | ## Nothing to do if pwd = srcdir. | 185 | ## Nothing to do if pwd = srcdir. |
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 76aa21884de..56e17c100be 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c | |||
| @@ -1193,7 +1193,7 @@ handle_sigtstp (int signalnum) | |||
| 1193 | send_to_emacs (emacs_socket, "-suspend \n"); | 1193 | send_to_emacs (emacs_socket, "-suspend \n"); |
| 1194 | 1194 | ||
| 1195 | /* Unblock this signal and call the default handler by temporarily | 1195 | /* Unblock this signal and call the default handler by temporarily |
| 1196 | changing the handler and resignalling. */ | 1196 | changing the handler and resignaling. */ |
| 1197 | sigprocmask (SIG_BLOCK, NULL, &set); | 1197 | sigprocmask (SIG_BLOCK, NULL, &set); |
| 1198 | sigdelset (&set, signalnum); | 1198 | sigdelset (&set, signalnum); |
| 1199 | signal (signalnum, SIG_DFL); | 1199 | signal (signalnum, SIG_DFL); |
diff --git a/lib-src/etags.c b/lib-src/etags.c index cdcc6461a64..b739e8f00c5 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -611,7 +611,7 @@ using `--declarations'."; | |||
| 611 | static const char *Cplusplus_suffixes [] = | 611 | static const char *Cplusplus_suffixes [] = |
| 612 | { "C", "c++", "cc", "cpp", "cxx", "H", "h++", "hh", "hpp", "hxx", | 612 | { "C", "c++", "cc", "cpp", "cxx", "H", "h++", "hh", "hpp", "hxx", |
| 613 | "M", /* Objective C++ */ | 613 | "M", /* Objective C++ */ |
| 614 | "pdb", /* Postscript with C syntax */ | 614 | "pdb", /* PostScript with C syntax */ |
| 615 | NULL }; | 615 | NULL }; |
| 616 | static const char Cplusplus_help [] = | 616 | static const char Cplusplus_help [] = |
| 617 | "In C++ code, all the tag constructs of C code are tagged. (Use\n\ | 617 | "In C++ code, all the tag constructs of C code are tagged. (Use\n\ |
| @@ -4846,7 +4846,7 @@ Lua_functions (FILE *inf) | |||
| 4846 | 4846 | ||
| 4847 | 4847 | ||
| 4848 | /* | 4848 | /* |
| 4849 | * Postscript tags | 4849 | * PostScript tags |
| 4850 | * Just look for lines where the first character is '/' | 4850 | * Just look for lines where the first character is '/' |
| 4851 | * Also look at "defineps" for PSWrap | 4851 | * Also look at "defineps" for PSWrap |
| 4852 | * Ideas by: | 4852 | * Ideas by: |
| @@ -6097,7 +6097,7 @@ readline (linebuffer *lbp, FILE *stream) | |||
| 6097 | lineno += 1; /* increment global line number */ | 6097 | lineno += 1; /* increment global line number */ |
| 6098 | charno += result; /* increment global char number */ | 6098 | charno += result; /* increment global char number */ |
| 6099 | 6099 | ||
| 6100 | /* Honour #line directives. */ | 6100 | /* Honor #line directives. */ |
| 6101 | if (!no_line_directive) | 6101 | if (!no_line_directive) |
| 6102 | { | 6102 | { |
| 6103 | static bool discard_until_line_directive; | 6103 | static bool discard_until_line_directive; |
diff --git a/lib-src/update-game-score.c b/lib-src/update-game-score.c index 9fba51a33de..e335617df4d 100644 --- a/lib-src/update-game-score.c +++ b/lib-src/update-game-score.c | |||
| @@ -346,7 +346,7 @@ read_scores (const char *filename, struct score_entry **scores, int *count) | |||
| 346 | return -1; | 346 | return -1; |
| 347 | while ((readval = read_score (f, &ret[scorecount])) == 0) | 347 | while ((readval = read_score (f, &ret[scorecount])) == 0) |
| 348 | { | 348 | { |
| 349 | /* We encoutered an error */ | 349 | /* We encountered an error. */ |
| 350 | if (readval < 0) | 350 | if (readval < 0) |
| 351 | return -1; | 351 | return -1; |
| 352 | scorecount++; | 352 | scorecount++; |