diff options
| author | Joakim Verona | 2015-01-16 22:29:10 +0100 |
|---|---|---|
| committer | Joakim Verona | 2015-01-16 22:29:10 +0100 |
| commit | 5e2255017323c54feeaaee220175d7761a3b6ed1 (patch) | |
| tree | 3f843af60b826b63e12482301ce20745a95ede3e /lib-src | |
| parent | b64675500decba1c707bc5d5c6d57f633934778f (diff) | |
| parent | 78e6ccc4a5006272b14f352e459a6d3bf52ed07b (diff) | |
| download | emacs-5e2255017323c54feeaaee220175d7761a3b6ed1.tar.gz emacs-5e2255017323c54feeaaee220175d7761a3b6ed1.zip | |
merge master
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 12 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 7 | ||||
| -rw-r--r-- | lib-src/make-docfile.c | 12 |
3 files changed, 18 insertions, 13 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index e9205fdd12a..37f037ef324 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2015-01-16 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (AM_V_RC, am__v_RC_, am__v_RC_0, am__v_RC_1): New | ||
| 4 | macros. | ||
| 5 | (emacsclient.res): Use $(AM_V_RC). | ||
| 6 | |||
| 7 | 2015-01-16 Paul Eggert <eggert@cs.ucla.edu> | ||
| 8 | |||
| 9 | Give up on -Wsuggest-attribute=const | ||
| 10 | * make-docfile.c (write_globals): | ||
| 11 | Remove special hack for Fnext_read_file_uses_dialog_p | ||
| 12 | |||
| 1 | 2015-01-13 Paul Eggert <eggert@cs.ucla.edu> | 13 | 2015-01-13 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 14 | ||
| 3 | Don't say Fnext_read_file_uses_dialog_p is const | 15 | Don't say Fnext_read_file_uses_dialog_p is const |
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 22a5ecad8d8..01592bd21a5 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -58,6 +58,11 @@ am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) | |||
| 58 | am__v_CCLD_0 = @echo " CCLD " $@; | 58 | am__v_CCLD_0 = @echo " CCLD " $@; |
| 59 | am__v_CCLD_1 = | 59 | am__v_CCLD_1 = |
| 60 | 60 | ||
| 61 | AM_V_RC = $(am__v_RC_@AM_V@) | ||
| 62 | am__v_RC_ = $(am__v_RC_@AM_DEFAULT_V@) | ||
| 63 | am__v_RC_0 = @echo " RC " $@; | ||
| 64 | am__v_RC_1 = | ||
| 65 | |||
| 61 | # ==================== Where To Install Things ==================== | 66 | # ==================== Where To Install Things ==================== |
| 62 | 67 | ||
| 63 | # Location to install Emacs.app under GNUstep / Mac OS X. | 68 | # Location to install Emacs.app under GNUstep / Mac OS X. |
| @@ -381,6 +386,6 @@ update-game-score${EXEEXT}: ${srcdir}/update-game-score.c $(NTLIB) $(config_h) | |||
| 381 | $< $(NTLIB) $(LOADLIBES) -o $@ | 386 | $< $(NTLIB) $(LOADLIBES) -o $@ |
| 382 | 387 | ||
| 383 | emacsclient.res: ../nt/emacsclient.rc $(NTINC)/../icons/emacs.ico | 388 | emacsclient.res: ../nt/emacsclient.rc $(NTINC)/../icons/emacs.ico |
| 384 | $(WINDRES) -O coff --include-dir=$(NTINC)/.. -o $@ $< | 389 | $(AM_V_RC)$(WINDRES) -O coff --include-dir=$(NTINC)/.. -o $@ $< |
| 385 | 390 | ||
| 386 | ## Makefile ends here. | 391 | ## Makefile ends here. |
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index 741fa4bfa42..79d421a0a8e 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c | |||
| @@ -729,18 +729,6 @@ write_globals (void) | |||
| 729 | 729 | ||
| 730 | if (globals[i].flags & DEFUN_const) | 730 | if (globals[i].flags & DEFUN_const) |
| 731 | fputs (" ATTRIBUTE_CONST", stdout); | 731 | fputs (" ATTRIBUTE_CONST", stdout); |
| 732 | else if (strcmp (globals[i].name, "Fnext_read_file_uses_dialog_p") | ||
| 733 | == 0) | ||
| 734 | { | ||
| 735 | /* It would be nice to have a cleaner way to deal with this | ||
| 736 | special hack. */ | ||
| 737 | fputs (("\n" | ||
| 738 | "#if ! (defined USE_GTK || defined USE_MOTIF \\\n" | ||
| 739 | " || defined HAVE_NS || defined HAVE_NTGUI)\n" | ||
| 740 | "\tATTRIBUTE_CONST\n" | ||
| 741 | "#endif\n"), | ||
| 742 | stdout); | ||
| 743 | } | ||
| 744 | 732 | ||
| 745 | puts (";"); | 733 | puts (";"); |
| 746 | } | 734 | } |