aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-02-25 12:05:36 -0800
committerPaul Eggert2011-02-25 12:05:36 -0800
commit36f13e1667c66073ef18c4ee3394865c3b7c6cbb (patch)
treebe36845ff1a7ffadcfa590589d099fb681d019ba /src
parent4394ee04741d5fe2fd4cc7a7ee821e1f8a3f2d32 (diff)
downloademacs-36f13e1667c66073ef18c4ee3394865c3b7c6cbb.tar.gz
emacs-36f13e1667c66073ef18c4ee3394865c3b7c6cbb.zip
Simplify symlink portability workaround.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/config.in19
2 files changed, 3 insertions, 19 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 3719b61b413..0bfadcf1a91 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12011-02-25 Paul Eggert <eggert@cs.ucla.edu> 12011-02-25 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Simplify symlink portability workaround.
4 * config.in: Regenerate.
5
3 * dired.c (Ffile_attributes): Increase size of modes from 10 to 12 6 * dired.c (Ffile_attributes): Increase size of modes from 10 to 12
4 as per recent filemodestring API change. Reported by Jonas Öster in 7 as per recent filemodestring API change. Reported by Jonas Öster in
5 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg01069.html>. 8 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg01069.html>.
diff --git a/src/config.in b/src/config.in
index 2a2a71659f5..4e49b4df170 100644
--- a/src/config.in
+++ b/src/config.in
@@ -72,19 +72,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
72/* Enable expensive run-time checking of data types? */ 72/* Enable expensive run-time checking of data types? */
73#undef ENABLE_CHECKING 73#undef ENABLE_CHECKING
74 74
75/* Define on systems for which file names may have a so-called `drive letter'
76 prefix, define this to compute the length of that prefix, including the
77 colon. */
78#undef FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX
79
80/* Define if the backslash character may also serve as a file name component
81 separator. */
82#undef FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR
83
84/* Define if a drive letter prefix denotes a relative path if it is not
85 followed by a file name component separator. */
86#undef FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE
87
88/* Define this to check for errors in cons list. */ 75/* Define this to check for errors in cons list. */
89#undef GC_CHECK_CONS_LIST 76#undef GC_CHECK_CONS_LIST
90 77
@@ -907,12 +894,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
907/* Define to support using a Hesiod database to find the POP server. */ 894/* Define to support using a Hesiod database to find the POP server. */
908#undef HESIOD 895#undef HESIOD
909 896
910#if FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR
911# define ISSLASH(C) ((C) == '/' || (C) == '\\')
912#else
913# define ISSLASH(C) ((C) == '/')
914#endif
915
916/* Define to support Kerberos-authenticated POP mail retrieval. */ 897/* Define to support Kerberos-authenticated POP mail retrieval. */
917#undef KERBEROS 898#undef KERBEROS
918 899