aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2007-10-20 23:19:53 +0000
committerJason Rumney2007-10-20 23:19:53 +0000
commitbd45f31ddc9ed9d408038ee665a19a2a575729c9 (patch)
tree0ac3850a75226a673f1c99864af0f5f02f47cfdb /src
parentdf77fd98e666cae390064c25f1676ab4b0886113 (diff)
downloademacs-bd45f31ddc9ed9d408038ee665a19a2a575729c9.tar.gz
emacs-bd45f31ddc9ed9d408038ee665a19a2a575729c9.zip
* doc.c (Fsnarf_documentation):
* Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog.unicode5
-rw-r--r--src/Makefile.in4
-rw-r--r--src/doc.c4
3 files changed, 8 insertions, 5 deletions
diff --git a/src/ChangeLog.unicode b/src/ChangeLog.unicode
index 2e3ac057592..6350500194f 100644
--- a/src/ChangeLog.unicode
+++ b/src/ChangeLog.unicode
@@ -1,3 +1,8 @@
12007-10-21 Jason Rumney <jasonr@gnu.org>
2
3 * doc.c (Fsnarf_documentation):
4 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
5
12007-10-12 Miles Bader <miles@gnu.org> 62007-10-12 Miles Bader <miles@gnu.org>
2 7
3 * src/dispextern.h (struct glyph_row): Only define "clip" field if 8 * src/dispextern.h (struct glyph_row): Only define "clip" field if
diff --git a/src/Makefile.in b/src/Makefile.in
index 1ff7ce30339..11e4d00b488 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -1014,7 +1014,7 @@ ${lispsource}international/charprop.el: temacs${EXEEXT} ${UNIDATA}
1014#endif 1014#endif
1015 1015
1016temacs${EXEEXT}: MAKE_PARALLEL $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args${EXEEXT} 1016temacs${EXEEXT}: MAKE_PARALLEL $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args${EXEEXT}
1017 echo "${obj} ${otherobj} " OBJECTS_MACHINE > ${etc}buildobj.lst 1017 echo "${obj} ${otherobj} " OBJECTS_MACHINE > buildobj.lst
1018 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${TEMACS_LDFLAGS}) $(LDFLAGS) \ 1018 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${TEMACS_LDFLAGS}) $(LDFLAGS) \
1019 -o temacs ${STARTFILES} ${obj} ${otherobj} \ 1019 -o temacs ${STARTFILES} ${obj} ${otherobj} \
1020 OBJECTS_MACHINE ${LIBES} 1020 OBJECTS_MACHINE ${LIBES}
@@ -1363,7 +1363,7 @@ mostlyclean:
1363 rm -f temacs${EXEEXT} prefix-args${EXEEXT} core *.core \#* *.o libXMenu11.a liblw.a 1363 rm -f temacs${EXEEXT} prefix-args${EXEEXT} core *.core \#* *.o libXMenu11.a liblw.a
1364 rm -f ../etc/DOC 1364 rm -f ../etc/DOC
1365 rm -f bootstrap-emacs${EXEEXT} emacs-${version}${EXEEXT} 1365 rm -f bootstrap-emacs${EXEEXT} emacs-${version}${EXEEXT}
1366 rm -f ${etc}buildobj.lst 1366 rm -f buildobj.lst
1367clean: mostlyclean 1367clean: mostlyclean
1368 rm -f emacs-*${EXEEXT} emacs${EXEEXT} 1368 rm -f emacs-*${EXEEXT} emacs${EXEEXT}
1369/**/# This is used in making a distribution. 1369/**/# This is used in making a distribution.
diff --git a/src/doc.c b/src/doc.c
index c4af523baac..dd7f4ae0eb9 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -629,10 +629,8 @@ the same file name is found in the `doc-directory'. */)
629 int nr_read; 629 int nr_read;
630 char *cp = NULL; 630 char *cp = NULL;
631 char *beg, *end; 631 char *beg, *end;
632 Lisp_Object buildobj = Fexpand_file_name (build_string ("buildobj.lst"),
633 Vdoc_directory);
634 632
635 fd = emacs_open (SDATA (buildobj), O_RDONLY, 0); 633 fd = emacs_open ("buildobj.lst", O_RDONLY, 0);
636 if (fd < 0) 634 if (fd < 0)
637 report_file_error ("Opening file buildobj.lst", Qnil); 635 report_file_error ("Opening file buildobj.lst", Qnil);
638 636