diff options
| author | Jason Rumney | 2007-10-20 23:19:53 +0000 |
|---|---|---|
| committer | Jason Rumney | 2007-10-20 23:19:53 +0000 |
| commit | bd45f31ddc9ed9d408038ee665a19a2a575729c9 (patch) | |
| tree | 0ac3850a75226a673f1c99864af0f5f02f47cfdb /src | |
| parent | df77fd98e666cae390064c25f1676ab4b0886113 (diff) | |
| download | emacs-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.unicode | 5 | ||||
| -rw-r--r-- | src/Makefile.in | 4 | ||||
| -rw-r--r-- | src/doc.c | 4 |
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 @@ | |||
| 1 | 2007-10-21 Jason Rumney <jasonr@gnu.org> | ||
| 2 | |||
| 3 | * doc.c (Fsnarf_documentation): | ||
| 4 | * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change. | ||
| 5 | |||
| 1 | 2007-10-12 Miles Bader <miles@gnu.org> | 6 | 2007-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 | ||
| 1016 | temacs${EXEEXT}: MAKE_PARALLEL $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args${EXEEXT} | 1016 | temacs${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 |
| 1367 | clean: mostlyclean | 1367 | clean: 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. |
| @@ -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 | ||