aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/.gitignore2
-rw-r--r--lib-src/emacsclient.c2
-rw-r--r--lib-src/fakemail.c2
-rw-r--r--lib-src/gettext.h82
-rwxr-xr-xlib-src/grep-changelog1
-rw-r--r--lib-src/hexl.c2
-rw-r--r--lib-src/make-docfile.c2
-rw-r--r--lib-src/movemail.c2
-rw-r--r--lib-src/ntlib.c2
-rw-r--r--lib-src/ntlib.h2
-rw-r--r--lib-src/pop.c2
-rw-r--r--lib-src/pop.h2
-rw-r--r--lib-src/profile.c2
-rwxr-xr-xlib-src/rcs-checkin1
-rw-r--r--lib-src/test-distrib.c2
-rw-r--r--lib-src/update-game-score.c2
-rwxr-xr-xlib-src/vcdiff1
17 files changed, 0 insertions, 111 deletions
diff --git a/lib-src/.gitignore b/lib-src/.gitignore
index c111257cc9a..e1693b13c5e 100644
--- a/lib-src/.gitignore
+++ b/lib-src/.gitignore
@@ -6,5 +6,3 @@ echolisp.tmp
6 6
7oo/ 7oo/
8oo-spd/ 8oo-spd/
9
10# arch-tag: bcd85c02-f779-4fe6-bd45-97a21150aadc
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index fdcd2c028e3..ab0057d6273 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -1802,7 +1802,5 @@ strerror (errnum)
1802 1802
1803#endif /* ! HAVE_STRERROR */ 1803#endif /* ! HAVE_STRERROR */
1804 1804
1805/* arch-tag: f39bb9c4-73eb-477e-896d-50832e2ca9a7
1806 (do not change this comment) */
1807 1805
1808/* emacsclient.c ends here */ 1806/* emacsclient.c ends here */
diff --git a/lib-src/fakemail.c b/lib-src/fakemail.c
index bf828b4660c..c426a1ff25c 100644
--- a/lib-src/fakemail.c
+++ b/lib-src/fakemail.c
@@ -736,7 +736,5 @@ main (int argc, char **argv)
736#endif /* not MSDOS */ 736#endif /* not MSDOS */
737#endif /* not BSD 4.2 (or newer) */ 737#endif /* not BSD 4.2 (or newer) */
738 738
739/* arch-tag: acb0afa6-315a-4c5b-b9e3-def5725c8783
740 (do not change this comment) */
741 739
742/* fakemail.c ends here */ 740/* fakemail.c ends here */
diff --git a/lib-src/gettext.h b/lib-src/gettext.h
deleted file mode 100644
index 4a5941f86dc..00000000000
--- a/lib-src/gettext.h
+++ /dev/null
@@ -1,82 +0,0 @@
1/* Convenience header for conditional use of GNU <libintl.h>.
2 Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2004,
3 2005, 2006, 2007 Free Software Foundation, Inc.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3, or (at your option)
8 any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation,
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
18
19#ifndef _LIBGETTEXT_H
20#define _LIBGETTEXT_H 1
21
22/* NLS can be disabled through the configure --disable-nls option. */
23#if ENABLE_NLS
24
25/* Get declarations of GNU message catalog functions. */
26# include <libintl.h>
27
28#else
29
30/* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which
31 chokes if dcgettext is defined as a macro. So include it now, to make
32 later inclusions of <locale.h> a NOP. We don't include <libintl.h>
33 as well because people using "gettext.h" will not include <libintl.h>,
34 and also including <libintl.h> would fail on SunOS 4, whereas <locale.h>
35 is OK. */
36#if defined(__sun)
37# include <locale.h>
38#endif
39
40/* Many header files from the libstdc++ coming with g++ 3.3 or newer include
41 <libintl.h>, which chokes if dcgettext is defined as a macro. So include
42 it now, to make later inclusions of <libintl.h> a NOP. */
43#if defined(__cplusplus) && defined(__GNUG__) && (__GNUC__ >= 3)
44# include <cstdlib>
45# if (__GLIBC__ >= 2) || _GLIBCXX_HAVE_LIBINTL_H
46# include <libintl.h>
47# endif
48#endif
49
50/* Disabled NLS.
51 The casts to 'const char *' serve the purpose of producing warnings
52 for invalid uses of the value returned from these functions.
53 On pre-ANSI systems without 'const', the config.h file is supposed to
54 contain "#define const". */
55# define gettext(Msgid) ((const char *) (Msgid))
56# define dgettext(Domainname, Msgid) ((const char *) (Msgid))
57# define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid))
58# define ngettext(Msgid1, Msgid2, N) \
59 ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
60# define dngettext(Domainname, Msgid1, Msgid2, N) \
61 ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
62# define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
63 ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
64# define textdomain(Domainname) ((const char *) (Domainname))
65# define bindtextdomain(Domainname, Dirname) ((const char *) (Dirname))
66# define bind_textdomain_codeset(Domainname, Codeset) ((const char *) (Codeset))
67
68#endif
69
70/* A pseudo function call that serves as a marker for the automated
71 extraction of messages, but does not call gettext(). The run-time
72 translation is done at a different place in the code.
73 The argument, String, should be a literal string. Concatenated strings
74 and other string expressions won't work.
75 The macro's expansion is not parenthesized, so that it is suitable as
76 initializer for static 'char[]' or 'const char[]' variables. */
77#define gettext_noop(String) String
78
79#endif /* _LIBGETTEXT_H */
80
81/* arch-tag: 3d01bb8e-82e3-4674-9812-de4c4224f7d1
82 (do not change this comment) */
diff --git a/lib-src/grep-changelog b/lib-src/grep-changelog
index e3e73768435..1518bc61502 100755
--- a/lib-src/grep-changelog
+++ b/lib-src/grep-changelog
@@ -263,5 +263,4 @@ while (defined (my $log = shift @ARGV)) {
263} 263}
264 264
265 265
266# arch-tag: 9e4f6749-e053-4bb7-b3ad-11947318418e
267# grep-changelog ends here. 266# grep-changelog ends here.
diff --git a/lib-src/hexl.c b/lib-src/hexl.c
index ce83428fb43..aa5b370aade 100644
--- a/lib-src/hexl.c
+++ b/lib-src/hexl.c
@@ -282,7 +282,5 @@ usage (void)
282 exit (EXIT_FAILURE); 282 exit (EXIT_FAILURE);
283} 283}
284 284
285/* arch-tag: 20e04fb7-926e-4e48-be86-64fe869ecdaa
286 (do not change this comment) */
287 285
288/* hexl.c ends here */ 286/* hexl.c ends here */
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c
index 3a3cc490afe..4260e4c08f6 100644
--- a/lib-src/make-docfile.c
+++ b/lib-src/make-docfile.c
@@ -1199,7 +1199,5 @@ scan_lisp_file (const char *filename, const char *mode)
1199 return 0; 1199 return 0;
1200} 1200}
1201 1201
1202/* arch-tag: f7203aaf-991a-4238-acb5-601db56f2894
1203 (do not change this comment) */
1204 1202
1205/* make-docfile.c ends here */ 1203/* make-docfile.c ends here */
diff --git a/lib-src/movemail.c b/lib-src/movemail.c
index 16584a89bd3..b127c85951d 100644
--- a/lib-src/movemail.c
+++ b/lib-src/movemail.c
@@ -931,7 +931,5 @@ strerror (errnum)
931 931
932#endif /* ! HAVE_STRERROR */ 932#endif /* ! HAVE_STRERROR */
933 933
934/* arch-tag: 1c323112-41fe-4fe5-8de9-494de631f73f
935 (do not change this comment) */
936 934
937/* movemail.c ends here */ 935/* movemail.c ends here */
diff --git a/lib-src/ntlib.c b/lib-src/ntlib.c
index 811080eb9db..7af503f0832 100644
--- a/lib-src/ntlib.c
+++ b/lib-src/ntlib.c
@@ -374,5 +374,3 @@ stat (const char * path, struct stat * buf)
374 return 0; 374 return 0;
375} 375}
376 376
377/* arch-tag: 7b63fb83-70ee-4124-8822-54e53e5d0773
378 (do not change this comment) */
diff --git a/lib-src/ntlib.h b/lib-src/ntlib.h
index f2e5a12daf3..6b0e28ea0c3 100644
--- a/lib-src/ntlib.h
+++ b/lib-src/ntlib.h
@@ -106,5 +106,3 @@ int fchown (int fd, unsigned uid, unsigned gid);
106 106
107/* end of ntlib.h */ 107/* end of ntlib.h */
108 108
109/* arch-tag: 93444f66-7b98-4aa5-a5cd-01444094af28
110 (do not change this comment) */
diff --git a/lib-src/pop.c b/lib-src/pop.c
index 4ac55192fd6..8888d3af29c 100644
--- a/lib-src/pop.c
+++ b/lib-src/pop.c
@@ -1625,5 +1625,3 @@ find_crlf (char *in_string, int len)
1625 1625
1626#endif /* MAIL_USE_POP */ 1626#endif /* MAIL_USE_POP */
1627 1627
1628/* arch-tag: ceb37041-b7ad-49a8-a63d-286618b8367d
1629 (do not change this comment) */
diff --git a/lib-src/pop.h b/lib-src/pop.h
index 6915dc8d729..917aadee5cd 100644
--- a/lib-src/pop.h
+++ b/lib-src/pop.h
@@ -75,5 +75,3 @@ extern int pop_reset (popserver server);
75extern int pop_quit (popserver server); 75extern int pop_quit (popserver server);
76extern void pop_close (popserver); 76extern void pop_close (popserver);
77 77
78/* arch-tag: 76cc5f58-8e86-48fa-bc72-a7c6cb1c4f1c
79 (do not change this comment) */
diff --git a/lib-src/profile.c b/lib-src/profile.c
index e8832a3d776..a1ddf243d2b 100644
--- a/lib-src/profile.c
+++ b/lib-src/profile.c
@@ -102,7 +102,5 @@ main (void)
102 exit (EXIT_FAILURE); 102 exit (EXIT_FAILURE);
103} 103}
104 104
105/* arch-tag: 8db68f7e-2322-4944-a315-dba349bdbf39
106 (do not change this comment) */
107 105
108/* profile.c ends here */ 106/* profile.c ends here */
diff --git a/lib-src/rcs-checkin b/lib-src/rcs-checkin
index be3fa1e5b8c..3361c23bfb3 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/test-distrib.c b/lib-src/test-distrib.c
index a58d5ee1fe6..1f031d74ce8 100644
--- a/lib-src/test-distrib.c
+++ b/lib-src/test-distrib.c
@@ -85,7 +85,5 @@ have been corrupted in the files of Emacs, and it will not work.\n",
85 return EXIT_SUCCESS; 85 return EXIT_SUCCESS;
86} 86}
87 87
88/* arch-tag: 3a89005d-df98-4c32-aa9f-33570e16a26a
89 (do not change this comment) */
90 88
91/* test-distrib.c ends here */ 89/* test-distrib.c ends here */
diff --git a/lib-src/update-game-score.c b/lib-src/update-game-score.c
index 6156de672bd..0e74182a75f 100644
--- a/lib-src/update-game-score.c
+++ b/lib-src/update-game-score.c
@@ -496,7 +496,5 @@ unlock_file (const char *filename, void *state)
496 return ret; 496 return ret;
497} 497}
498 498
499/* arch-tag: 2bf5c52e-4beb-463a-954e-c58b9c64736b
500 (do not change this comment) */
501 499
502/* update-game-score.c ends here */ 500/* update-game-score.c ends here */
diff --git a/lib-src/vcdiff b/lib-src/vcdiff
index 4bf751b0450..57812295276 100755
--- a/lib-src/vcdiff
+++ b/lib-src/vcdiff
@@ -112,4 +112,3 @@ do
112 fi 112 fi
113done 113done
114 114
115# arch-tag: 4344ba3a-bcbe-4f77-971c-f43c1606953a