aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorKenichi Handa2003-09-08 11:56:09 +0000
committerKenichi Handa2003-09-08 11:56:09 +0000
commit463f5630a5e7cbe7f042bc1175d1fa1c4e98860f (patch)
tree3287d0c628fea2249abf4635b3a4f45bedd6f8c4 /lib-src
parent4256310de631bd57c78b88b5131caa073315b3d7 (diff)
downloademacs-463f5630a5e7cbe7f042bc1175d1fa1c4e98860f.tar.gz
emacs-463f5630a5e7cbe7f042bc1175d1fa1c4e98860f.zip
New directory
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog11
-rw-r--r--lib-src/Makefile.in18
-rw-r--r--lib-src/b2m.c2
-rw-r--r--lib-src/b2m.pl4
-rw-r--r--lib-src/cvtmail.c3
-rw-r--r--lib-src/digest-doc.c3
-rw-r--r--lib-src/ebrowse.c3
-rw-r--r--lib-src/emacsclient.c3
-rw-r--r--lib-src/emacstool.c3
-rw-r--r--lib-src/etags.c5
-rw-r--r--lib-src/fakemail.c3
-rw-r--r--lib-src/getopt.c3
-rw-r--r--lib-src/getopt.h3
-rw-r--r--lib-src/getopt1.c2
-rwxr-xr-xlib-src/grep-changelog1
-rw-r--r--lib-src/hexl.c3
-rw-r--r--lib-src/leditcfns.c3
-rw-r--r--lib-src/make-docfile.c3
-rw-r--r--lib-src/makefile.nt2
-rw-r--r--lib-src/makefile.w32-in2
-rw-r--r--lib-src/movemail.c3
-rw-r--r--lib-src/ntlib.c3
-rw-r--r--lib-src/ntlib.h3
-rw-r--r--lib-src/pop.c3
-rw-r--r--lib-src/pop.h3
-rw-r--r--lib-src/profile.c3
-rwxr-xr-xlib-src/rcs-checkin1
-rwxr-xr-xlib-src/rcs2log4
-rw-r--r--lib-src/sorted-doc.c3
-rw-r--r--lib-src/test-distrib.c3
-rw-r--r--lib-src/update-game-score.c3
-rwxr-xr-xlib-src/vcdiff4
-rw-r--r--lib-src/yow.c2
33 files changed, 16 insertions, 102 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 8ffc797a681..e6b6b4c2ef7 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,12 +1,3 @@
12003-08-25 Takaaki Ota <Takaaki.Ota@am.sony.com> (tiny change)
2
3 * etags.c (consider_token): check C++ `operator' only when the
4 token len is long enough.
5
62003-08-20 Dave Love <fx@gnu.org>
7
8 * Makefile.in: Remove obsolete references to alloca.
9
102003-07-29 Ken Brush <ken@wirex.com> 12003-07-29 Ken Brush <ken@wirex.com>
11 2
12 * emacsclient.c (main) 3 * emacsclient.c (main)
@@ -5443,5 +5434,3 @@ Tue Jul 1 01:09:07 1997 Geoff Voelker <voelker@cs.washington.edu>
5443 Free Software Foundation, Inc. 5434 Free Software Foundation, Inc.
5444 Copying and distribution of this file, with or without modification, 5435 Copying and distribution of this file, with or without modification,
5445 are permitted provided the copyright notice and this notice are preserved. 5436 are permitted provided the copyright notice and this notice are preserved.
5446
5447;;; arch-tag: 2d979296-954c-448e-95c1-b46d134513dc
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index 7868364148a..1554b347113 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -27,6 +27,7 @@ SHELL = /bin/sh
27 27
28CC=@CC@ 28CC=@CC@
29CFLAGS=@CFLAGS@ 29CFLAGS=@CFLAGS@
30ALLOCA=@ALLOCA@
30version=@version@ 31version=@version@
31configuration=@configuration@ 32configuration=@configuration@
32EXEEXT=@EXEEXT@ 33EXEEXT=@EXEEXT@
@@ -144,6 +145,12 @@ MOVE_FLAGS=
144#define NOT_C_CODE 145#define NOT_C_CODE
145#include "../src/config.h" 146#include "../src/config.h"
146 147
148/* We won't really call alloca;
149 don't let the file name alloca.c get messed up. */
150#ifdef alloca
151#undef alloca
152#endif
153
147/* Some machines don\'t find the standard C libraries in the usual place. */ 154/* Some machines don\'t find the standard C libraries in the usual place. */
148#ifndef ORDINARY_LINK 155#ifndef ORDINARY_LINK
149#ifndef LIB_STANDARD_LIBSRC 156#ifndef LIB_STANDARD_LIBSRC
@@ -382,12 +389,14 @@ test-distrib${EXEEXT}: ${srcdir}/test-distrib.c
382 $(CC) ${ALL_CFLAGS} -o test-distrib ${srcdir}/test-distrib.c 389 $(CC) ${ALL_CFLAGS} -o test-distrib ${srcdir}/test-distrib.c
383 ./test-distrib ${srcdir}/testfile 390 ./test-distrib ${srcdir}/testfile
384 391
385GETOPTOBJS = getopt.o getopt1.o 392GETOPTOBJS = getopt.o getopt1.o $(ALLOCA)
386GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h 393GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h
387getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h 394getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h
388 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c 395 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c
389getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h 396getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h
390 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c 397 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c
398alloca.o: ${srcdir}/alloca.c
399 ${CC} -Demacs -c ${BASE_CFLAGS} ${srcdir}/alloca.c
391 400
392#ifdef REGEXP_IN_LIBC 401#ifdef REGEXP_IN_LIBC
393REGEXPOBJ = 402REGEXPOBJ =
@@ -420,8 +429,8 @@ make-docfile${EXEEXT}: ${srcdir}/make-docfile.c ../src/config.h
420digest-doc${EXEEXT}: ${srcdir}/digest-doc.c 429digest-doc${EXEEXT}: ${srcdir}/digest-doc.c
421 $(CC) ${ALL_CFLAGS} ${srcdir}/digest-doc.c $(LOADLIBES) -o digest-doc 430 $(CC) ${ALL_CFLAGS} ${srcdir}/digest-doc.c $(LOADLIBES) -o digest-doc
422 431
423sorted-doc${EXEEXT}: ${srcdir}/sorted-doc.c 432sorted-doc${EXEEXT}: ${srcdir}/sorted-doc.c ${ALLOCA}
424 $(CC) ${ALL_CFLAGS} ${srcdir}/sorted-doc.c $(LOADLIBES) -o sorted-doc 433 $(CC) ${ALL_CFLAGS} ${srcdir}/sorted-doc.c ${ALLOCA} $(LOADLIBES) -o sorted-doc
425 434
426b2m${EXEEXT}: ${srcdir}/b2m.c ../src/config.h $(GETOPTDEPS) 435b2m${EXEEXT}: ${srcdir}/b2m.c ../src/config.h $(GETOPTDEPS)
427 $(CC) ${ALL_CFLAGS} ${srcdir}/b2m.c -DVERSION="\"${version}\"" \ 436 $(CC) ${ALL_CFLAGS} ${srcdir}/b2m.c -DVERSION="\"${version}\"" \
@@ -478,6 +487,3 @@ xveterm${EXEEXT}: ${srcdir}/emacstool.c
478 $(CC) -o xveterm -DXVIEW -DTTERM ${ALL_CFLAGS} ${srcdir}/emacstool.c \ 487 $(CC) -o xveterm -DXVIEW -DTTERM ${ALL_CFLAGS} ${srcdir}/emacstool.c \
479 -lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \ 488 -lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
480 $(LOADLIBES) 489 $(LOADLIBES)
481
482/* arch-tag: cc40144d-fbd2-436b-9a22-dcb5b5b6a2af
483 (do not change this comment) */
diff --git a/lib-src/b2m.c b/lib-src/b2m.c
index 5a1f9e85473..05caa1424e0 100644
--- a/lib-src/b2m.c
+++ b/lib-src/b2m.c
@@ -301,5 +301,3 @@ fatal (message)
301 exit (BAD); 301 exit (BAD);
302} 302}
303 303
304/* arch-tag: 5a3ad2af-a802-408f-83cc-e7cf5e98653e
305 (do not change this comment) */
diff --git a/lib-src/b2m.pl b/lib-src/b2m.pl
index 38eb96e076f..86f9b948b32 100644
--- a/lib-src/b2m.pl
+++ b/lib-src/b2m.pl
@@ -30,7 +30,7 @@ use Mail::Address;
30use Date::Parse; 30use Date::Parse;
31 31
32my($whoami) = basename $0; 32my($whoami) = basename $0;
33my($version) = '$Revision: 1.5 $'; 33my($version) = '$Revision: 1.4 $';
34my($usage) = "Usage: $whoami [--help] [--version] [--[no]full-headers] [Babyl-file] 34my($usage) = "Usage: $whoami [--help] [--version] [--[no]full-headers] [Babyl-file]
35\tBy default, full headers are printed.\n"; 35\tBy default, full headers are printed.\n";
36 36
@@ -152,5 +152,3 @@ while (<>) {
152} 152}
153 153
154close(STDOUT) || die "$whoami: Error closing stdout: $!\n"; 154close(STDOUT) || die "$whoami: Error closing stdout: $!\n";
155
156# arch-tag: 8c7c8ab0-721c-46d7-ba3e-139801240aa8
diff --git a/lib-src/cvtmail.c b/lib-src/cvtmail.c
index 28a4ae4c703..5a4d3c70952 100644
--- a/lib-src/cvtmail.c
+++ b/lib-src/cvtmail.c
@@ -180,6 +180,3 @@ xrealloc (ptr, size)
180 fatal ("virtual memory exhausted", 0); 180 fatal ("virtual memory exhausted", 0);
181 return result; 181 return result;
182} 182}
183
184/* arch-tag: b93c25a9-9012-44f1-b78b-9cc7aed44a7a
185 (do not change this comment) */
diff --git a/lib-src/digest-doc.c b/lib-src/digest-doc.c
index 09878543d44..24d1348b0ee 100644
--- a/lib-src/digest-doc.c
+++ b/lib-src/digest-doc.c
@@ -65,6 +65,3 @@ main ()
65 } 65 }
66 return 0; 66 return 0;
67} 67}
68
69/* arch-tag: 2ba2c9b0-4157-4eba-bd9f-967e3677e35f
70 (do not change this comment) */
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c
index eeeb0eb3efd..611c0f74c7d 100644
--- a/lib-src/ebrowse.c
+++ b/lib-src/ebrowse.c
@@ -3975,6 +3975,3 @@ main (argc, argv)
3975 3975
3976 3976
3977/* ebrowse.c ends here. */ 3977/* ebrowse.c ends here. */
3978
3979/* arch-tag: fc03b4bc-91a9-4c3d-b3b9-12a77fa86dd8
3980 (do not change this comment) */
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index 2a53b162693..fc85ba67448 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -519,6 +519,3 @@ strerror (errnum)
519} 519}
520 520
521#endif /* ! HAVE_STRERROR */ 521#endif /* ! HAVE_STRERROR */
522
523/* arch-tag: f39bb9c4-73eb-477e-896d-50832e2ca9a7
524 (do not change this comment) */
diff --git a/lib-src/emacstool.c b/lib-src/emacstool.c
index f9185c21c08..dcbc20feeed 100644
--- a/lib-src/emacstool.c
+++ b/lib-src/emacstool.c
@@ -498,6 +498,3 @@ int interpose_on_window (argc, argv)
498 (tty_view, input_event_filter_function, NOTIFY_SAFE); 498 (tty_view, input_event_filter_function, NOTIFY_SAFE);
499} 499}
500#endif XVIEW 500#endif XVIEW
501
502/* arch-tag: 7a2e7105-c059-418a-b3d9-5b5de96abb4e
503 (do not change this comment) */
diff --git a/lib-src/etags.c b/lib-src/etags.c
index e9fab1be3ee..9633cf37ad2 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -3116,7 +3116,7 @@ consider_token (str, len, c, c_extp, cblev, parlev, is_func_or_var)
3116 fvdef = vignore; 3116 fvdef = vignore;
3117 return FALSE; 3117 return FALSE;
3118 } 3118 }
3119 if (len >= 10 && strneq (str+len-10, "::operator", 10)) 3119 if (strneq (str+len-10, "::operator", 10))
3120 { 3120 {
3121 if (*c_extp & C_AUTO) /* automatic detection of C++ */ 3121 if (*c_extp & C_AUTO) /* automatic detection of C++ */
3122 *c_extp = (*c_extp | C_PLPL) & ~C_AUTO; 3122 *c_extp = (*c_extp | C_PLPL) & ~C_AUTO;
@@ -6785,6 +6785,3 @@ xrealloc (ptr, size)
6785 * c-font-lock-extra-types: ("FILE" "bool" "language" "linebuffer" "fdesc" "node" "regexp") 6785 * c-font-lock-extra-types: ("FILE" "bool" "language" "linebuffer" "fdesc" "node" "regexp")
6786 * End: 6786 * End:
6787 */ 6787 */
6788
6789/* arch-tag: 8a9b748d-390c-4922-99db-2eeefa921051
6790 (do not change this comment) */
diff --git a/lib-src/fakemail.c b/lib-src/fakemail.c
index 944a728a28c..a4ac44cf96a 100644
--- a/lib-src/fakemail.c
+++ b/lib-src/fakemail.c
@@ -750,6 +750,3 @@ main (argc, argv)
750 750
751#endif /* not MSDOS */ 751#endif /* not MSDOS */
752#endif /* not BSD 4.2 (or newer) */ 752#endif /* not BSD 4.2 (or newer) */
753
754/* arch-tag: acb0afa6-315a-4c5b-b9e3-def5725c8783
755 (do not change this comment) */
diff --git a/lib-src/getopt.c b/lib-src/getopt.c
index a4b0a65147d..c17aecaefd2 100644
--- a/lib-src/getopt.c
+++ b/lib-src/getopt.c
@@ -1283,6 +1283,3 @@ main (argc, argv)
1283} 1283}
1284 1284
1285#endif /* TEST */ 1285#endif /* TEST */
1286
1287/* arch-tag: 0e6da124-7269-4785-a9de-094c263d20dc
1288 (do not change this comment) */
diff --git a/lib-src/getopt.h b/lib-src/getopt.h
index 0d4c40c52d0..4d6adeea0d6 100644
--- a/lib-src/getopt.h
+++ b/lib-src/getopt.h
@@ -178,6 +178,3 @@ extern int _getopt_internal ();
178#undef __need_getopt 178#undef __need_getopt
179 179
180#endif /* getopt.h */ 180#endif /* getopt.h */
181
182/* arch-tag: 9adb7828-e6a6-40cd-8512-0cdf1f20ddd4
183 (do not change this comment) */
diff --git a/lib-src/getopt1.c b/lib-src/getopt1.c
index f08cd72638a..60baeb85283 100644
--- a/lib-src/getopt1.c
+++ b/lib-src/getopt1.c
@@ -194,5 +194,3 @@ main (argc, argv)
194 194
195#endif /* TEST */ 195#endif /* TEST */
196 196
197/* arch-tag: 28a5c558-b0c0-4bff-b5bc-e2e20291d4b6
198 (do not change this comment) */
diff --git a/lib-src/grep-changelog b/lib-src/grep-changelog
index 9baf0213db7..82a14efb383 100755
--- a/lib-src/grep-changelog
+++ b/lib-src/grep-changelog
@@ -241,5 +241,4 @@ while (defined (my $log = shift @ARGV)) {
241} 241}
242 242
243 243
244# arch-tag: 9e4f6749-e053-4bb7-b3ad-11947318418e
245# grep-changelog ends here. 244# grep-changelog ends here.
diff --git a/lib-src/hexl.c b/lib-src/hexl.c
index 0cfb88445b3..cbab66a2a17 100644
--- a/lib-src/hexl.c
+++ b/lib-src/hexl.c
@@ -279,6 +279,3 @@ usage ()
279 fprintf (stderr, "usage: %s [-de] [-iso]\n", progname); 279 fprintf (stderr, "usage: %s [-de] [-iso]\n", progname);
280 exit (1); 280 exit (1);
281} 281}
282
283/* arch-tag: 20e04fb7-926e-4e48-be86-64fe869ecdaa
284 (do not change this comment) */
diff --git a/lib-src/leditcfns.c b/lib-src/leditcfns.c
index 239db1cd1fa..b8a7a6bfe1f 100644
--- a/lib-src/leditcfns.c
+++ b/lib-src/leditcfns.c
@@ -16,6 +16,3 @@ set_proc_str(ptr) char *ptr; {
16 else 16 else
17 printf("string too long for set-proc-str: %s\n", ptr); 17 printf("string too long for set-proc-str: %s\n", ptr);
18 } 18 }
19
20/* arch-tag: eb7ae804-0d6e-4077-ab42-7173821410c3
21 (do not change this comment) */
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c
index 7330b821768..ed6dde3a0bf 100644
--- a/lib-src/make-docfile.c
+++ b/lib-src/make-docfile.c
@@ -1185,6 +1185,3 @@ scan_lisp_file (filename, mode)
1185 fclose (infile); 1185 fclose (infile);
1186 return 0; 1186 return 0;
1187} 1187}
1188
1189/* arch-tag: f7203aaf-991a-4238-acb5-601db56f2894
1190 (do not change this comment) */
diff --git a/lib-src/makefile.nt b/lib-src/makefile.nt
index 29282eea45d..d9553216337 100644
--- a/lib-src/makefile.nt
+++ b/lib-src/makefile.nt
@@ -413,5 +413,3 @@ $(BLD)\timer.obj : \
413$(BLD)\yow.obj : \ 413$(BLD)\yow.obj : \
414 $(SRC)\yow.c \ 414 $(SRC)\yow.c \
415 $(EMACS_ROOT)\lib-src\..\src\paths.h 415 $(EMACS_ROOT)\lib-src\..\src\paths.h
416
417# arch-tag: 59e1b54b-4cc2-4086-bb0b-ecfad4b683e9
diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in
index 6f92bd76ee8..faab36e087b 100644
--- a/lib-src/makefile.w32-in
+++ b/lib-src/makefile.w32-in
@@ -422,5 +422,3 @@ $(BLD)/timer.$(O) : \
422$(BLD)/yow.$(O) : \ 422$(BLD)/yow.$(O) : \
423 $(SRC)/yow.c \ 423 $(SRC)/yow.c \
424 $(EMACS_ROOT)/lib-src/../src/paths.h 424 $(EMACS_ROOT)/lib-src/../src/paths.h
425
426# arch-tag: c051bc02-a6de-474b-889a-27f7b2fbbcea
diff --git a/lib-src/movemail.c b/lib-src/movemail.c
index 2d0cd9043fd..89714a07423 100644
--- a/lib-src/movemail.c
+++ b/lib-src/movemail.c
@@ -954,6 +954,3 @@ strerror (errnum)
954} 954}
955 955
956#endif /* ! HAVE_STRERROR */ 956#endif /* ! HAVE_STRERROR */
957
958/* arch-tag: 1c323112-41fe-4fe5-8de9-494de631f73f
959 (do not change this comment) */
diff --git a/lib-src/ntlib.c b/lib-src/ntlib.c
index 261a6b41614..31bf758197d 100644
--- a/lib-src/ntlib.c
+++ b/lib-src/ntlib.c
@@ -208,6 +208,3 @@ sys_chdir (const char * path)
208{ 208{
209 return _chdir (path); 209 return _chdir (path);
210} 210}
211
212/* arch-tag: 7b63fb83-70ee-4124-8822-54e53e5d0773
213 (do not change this comment) */
diff --git a/lib-src/ntlib.h b/lib-src/ntlib.h
index 523e3d6fd49..e6bce58074e 100644
--- a/lib-src/ntlib.h
+++ b/lib-src/ntlib.h
@@ -114,6 +114,3 @@ int fchown (int fd, int uid, int gid);
114#undef _WINSOCK_H 114#undef _WINSOCK_H
115 115
116/* end of ntlib.h */ 116/* end of ntlib.h */
117
118/* arch-tag: 93444f66-7b98-4aa5-a5cd-01444094af28
119 (do not change this comment) */
diff --git a/lib-src/pop.c b/lib-src/pop.c
index adf80c544b6..b51e82c82bf 100644
--- a/lib-src/pop.c
+++ b/lib-src/pop.c
@@ -1607,6 +1607,3 @@ find_crlf (in_string, len)
1607} 1607}
1608 1608
1609#endif /* MAIL_USE_POP */ 1609#endif /* MAIL_USE_POP */
1610
1611/* arch-tag: ceb37041-b7ad-49a8-a63d-286618b8367d
1612 (do not change this comment) */
diff --git a/lib-src/pop.h b/lib-src/pop.h
index 8954e1d5369..cfd333ccafc 100644
--- a/lib-src/pop.h
+++ b/lib-src/pop.h
@@ -81,6 +81,3 @@ extern int pop_quit _ARGS((popserver server));
81extern void pop_close _ARGS((popserver)); 81extern void pop_close _ARGS((popserver));
82 82
83#undef _ARGS 83#undef _ARGS
84
85/* arch-tag: 76cc5f58-8e86-48fa-bc72-a7c6cb1c4f1c
86 (do not change this comment) */
diff --git a/lib-src/profile.c b/lib-src/profile.c
index ec77936f74d..9c43c16e776 100644
--- a/lib-src/profile.c
+++ b/lib-src/profile.c
@@ -102,6 +102,3 @@ main ()
102 } 102 }
103 exit (1); 103 exit (1);
104} 104}
105
106/* arch-tag: 8db68f7e-2322-4944-a315-dba349bdbf39
107 (do not change this comment) */
diff --git a/lib-src/rcs-checkin b/lib-src/rcs-checkin
index 365050e9584..75616c3564e 100755
--- a/lib-src/rcs-checkin
+++ b/lib-src/rcs-checkin
@@ -115,4 +115,3 @@ $file"
115 ci -d -q -u $owner -m"entered into RCS" "$file" || exit 115 ci -d -q -u $owner -m"entered into RCS" "$file" || exit
116done 116done
117 117
118# arch-tag: 89c86949-ef04-4380-838b-bc1444dcb074
diff --git a/lib-src/rcs2log b/lib-src/rcs2log
index 86a3f6722cd..a304df9adbd 100755
--- a/lib-src/rcs2log
+++ b/lib-src/rcs2log
@@ -29,7 +29,7 @@ Options:
29 29
30Report bugs to <bug-gnu-emacs@gnu.org>.' 30Report bugs to <bug-gnu-emacs@gnu.org>.'
31 31
32Id='$Id: rcs2log,v 1.50 2002/02/03 17:31:31 eggert Exp $' 32Id='$Id: rcs2log,v 1.49 2001/11/28 23:55:08 eggert Exp eggert $'
33 33
34# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2001, 2002 34# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2001, 2002
35# Free Software Foundation, Inc. 35# Free Software Foundation, Inc.
@@ -729,5 +729,3 @@ exec rm -fr $logdir
729# Local Variables: 729# Local Variables:
730# tab-width:4 730# tab-width:4
731# End: 731# End:
732
733# arch-tag: cea067bd-a552-4254-ba17-078208933073
diff --git a/lib-src/sorted-doc.c b/lib-src/sorted-doc.c
index 05a3e69cc92..185295a9294 100644
--- a/lib-src/sorted-doc.c
+++ b/lib-src/sorted-doc.c
@@ -281,6 +281,3 @@ main ()
281 281
282 return 0; 282 return 0;
283} 283}
284
285/* arch-tag: ce28f204-1e70-4b34-8210-3d54a5662071
286 (do not change this comment) */
diff --git a/lib-src/test-distrib.c b/lib-src/test-distrib.c
index f7b3a8b8004..973d1104393 100644
--- a/lib-src/test-distrib.c
+++ b/lib-src/test-distrib.c
@@ -105,6 +105,3 @@ have been corrupted in the files of Emacs, and it will not work.\n",
105#endif 105#endif
106 return (0); 106 return (0);
107} 107}
108
109/* arch-tag: 3a89005d-df98-4c32-aa9f-33570e16a26a
110 (do not change this comment) */
diff --git a/lib-src/update-game-score.c b/lib-src/update-game-score.c
index 74fa2b06920..af691d394a6 100644
--- a/lib-src/update-game-score.c
+++ b/lib-src/update-game-score.c
@@ -528,6 +528,3 @@ unlock_file (filename, state)
528 errno = saved_errno; 528 errno = saved_errno;
529 return ret; 529 return ret;
530} 530}
531
532/* arch-tag: 2bf5c52e-4beb-463a-954e-c58b9c64736b
533 (do not change this comment) */
diff --git a/lib-src/vcdiff b/lib-src/vcdiff
index 32c4e5ba89e..5fdc345eb98 100755
--- a/lib-src/vcdiff
+++ b/lib-src/vcdiff
@@ -23,7 +23,7 @@
23# Free Software Foundation, Inc., 59 Temple Place - Suite 330, 23# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24# Boston, MA 02111-1307, USA. 24# Boston, MA 02111-1307, USA.
25# 25#
26# $Id: vcdiff,v 1.7 2001/02/20 12:36:28 gerd Exp $ 26# $Id: vcdiff,v 1.6 1997/01/01 05:33:42 eggert Exp $
27# 27#
28 28
29DIFF="diff" 29DIFF="diff"
@@ -111,5 +111,3 @@ do
111 then status=$s 111 then status=$s
112 fi 112 fi
113done 113done
114
115# arch-tag: 4344ba3a-bcbe-4f77-971c-f43c1606953a
diff --git a/lib-src/yow.c b/lib-src/yow.c
index 10f0fad1ce7..02bcc6642eb 100644
--- a/lib-src/yow.c
+++ b/lib-src/yow.c
@@ -178,5 +178,3 @@ yow (fp)
178 printf("%s\n", buf); 178 printf("%s\n", buf);
179} 179}
180 180
181/* arch-tag: e40fc0df-bafb-4001-af24-5c883d1c685e
182 (do not change this comment) */