aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2008-07-04 03:39:37 +0000
committerStefan Monnier2008-07-04 03:39:37 +0000
commitd7c664f351958c5a74892cd651713ea4f6a7ae77 (patch)
tree7b7a44f300264e4d0aa10dd6619f7c9bbe407c69 /src
parent9ffc8a3a97c07a46f2d68b7b058ff963112c69aa (diff)
downloademacs-d7c664f351958c5a74892cd651713ea4f6a7ae77.tar.gz
emacs-d7c664f351958c5a74892cd651713ea4f6a7ae77.zip
(${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog30
-rw-r--r--src/Makefile.in7
2 files changed, 23 insertions, 14 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b053a990491..81f6520eb89 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
4
12008-07-04 Kenichi Handa <handa@m17n.org> 52008-07-04 Kenichi Handa <handa@m17n.org>
2 6
3 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1. 7 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
@@ -6,28 +10,28 @@
6 10
72008-07-02 Jason Rumney <jasonr@gnu.org> 112008-07-02 Jason Rumney <jasonr@gnu.org>
8 12
9 * xfns.c (syms_of_xfns): Only define x-select-font when both 13 * xfns.c (syms_of_xfns): Only define x-select-font when both
10 HAVE_FREETYPE and USE_GTK 14 HAVE_FREETYPE and USE_GTK
11 15
12 * xdisp.c (next_element_from_display_vector): Move assignment out 16 * xdisp.c (next_element_from_display_vector): Move assignment out
13 of if statement. 17 of if statement.
14 18
152008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com> 192008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
16 20
17 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern. 21 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
18 22
19 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars. 23 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
20 (syms_of_fileio): Initialize and export them. 24 (syms_of_fileio): Initialize and export them.
21 (Fdelete_directory, Fdelete_file): Optionally delete via trash. 25 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
22 26
23 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already. 27 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
24 (Fsystem_move_file_to_trash): New function. 28 (Fsystem_move_file_to_trash): New function.
25 (syms_of_w32fns): Export it to lisp. 29 (syms_of_w32fns): Export it to lisp.
26 30
272008-07-01 Jason Rumney <jasonr@gnu.org> 312008-07-01 Jason Rumney <jasonr@gnu.org>
28 32
29 * w32font.c (w32font_text_extents): Don't count overhang as part 33 * w32font.c (w32font_text_extents): Don't count overhang as part
30 of width. 34 of width.
31 35
322008-06-30 Miles Bader <miles@gnu.org> 362008-06-30 Miles Bader <miles@gnu.org>
33 37
diff --git a/src/Makefile.in b/src/Makefile.in
index f359d619764..f3afe86e1ec 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -920,7 +920,12 @@ emacs${EXEEXT}: temacs${EXEEXT} ${etc}DOC ${lisp} ${SOME_MACHINE_LISP}
920 for the first time, this prevents any variation between configurations 920 for the first time, this prevents any variation between configurations
921 in the contents of the DOC file. 921 in the contents of the DOC file.
922 Likewise for ${SOME_MACHINE_LISP}. */ 922 Likewise for ${SOME_MACHINE_LISP}. */
923${etc}DOC: ${libsrc}make-docfile${EXEEXT} ${obj} ${shortlisp} ${SOME_MACHINE_LISP} 923/* Most of this Makefile refers to Lisp files via ${lispsource}, so
924 we also use ${lisp} rather than ${shortlisp} for the dependency since
925 the Makefile uses string equality to decide when we talk about identical
926 files. Apparently we pass ${shortlisp} rather than ${lisp} to make-docfile
927 only in order to reduce the command line length. --Stef */
928${etc}DOC: ${libsrc}make-docfile${EXEEXT} ${obj} ${lisp} ${SOME_MACHINE_LISP}
924 -rm -f ${etc}DOC 929 -rm -f ${etc}DOC
925 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC 930 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC
926 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp} 931 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp}