aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-08-24 11:42:48 +0000
committerGerd Moellmann2000-08-24 11:42:48 +0000
commit17494071e6e677db065dcc140e078c3a90809e98 (patch)
tree1165e352ddbaa54f9648f3cf946155bfdfe945f6
parentdff13d039cf164c545d3ea95d3cddef3370eac89 (diff)
downloademacs-17494071e6e677db065dcc140e078c3a90809e98.tar.gz
emacs-17494071e6e677db065dcc140e078c3a90809e98.zip
*** empty log message ***
-rw-r--r--ChangeLog6
-rwxr-xr-xconfigure8
-rw-r--r--man/cmdargs.texi4
-rw-r--r--src/ChangeLog2
4 files changed, 16 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 3b0bb248945..f7d907d52ff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
12000-08-24 Gerd Moellmann <gerd@gnu.org>
2
3 * configure.in <making srcdir absolute>: Unset CDPATH in case $PWD
4 contains a relative path. Protect against unusable values of
5 $PWD.
6
12000-08-08 Eli Zaretskii <eliz@is.elta.co.il> 72000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
2 8
3 * info/dir (WoMan): Add entry. 9 * info/dir (WoMan): Add entry.
diff --git a/configure b/configure
index 133ef04b875..ef75538345d 100755
--- a/configure
+++ b/configure
@@ -684,17 +684,17 @@ fi
684 684
685 685
686#### Make srcdir absolute, if it isn't already. It's important to 686#### Make srcdir absolute, if it isn't already. It's important to
687#### avoid running the path through pwd unnecessary, since pwd can 687#### avoid running the path through pwd unnecessarily, since pwd can
688#### give you automounter prefixes, which can go away. We do all this 688#### give you automounter prefixes, which can go away. We do all this
689#### so Emacs can find its files when run uninstalled. 689#### so Emacs can find its files when run uninstalled.
690## Make sure CDPATH doesn't affect cd (in case PWD is relative).
691unset CDPATH
690case "${srcdir}" in 692case "${srcdir}" in
691 /* ) ;; 693 /* ) ;;
692 . ) 694 . )
693 ## We may be able to use the $PWD environment variable to make this 695 ## We may be able to use the $PWD environment variable to make this
694 ## absolute. But sometimes PWD is inaccurate. 696 ## absolute. But sometimes PWD is inaccurate.
695 ## Make sure CDPATH doesn't affect cd (in case PWD is relative). 697 if test ".${PWD}" != "." && test ".`(cd ${PWD} ; sh -c pwd)`" = ".${PWD}" ;
696 unset CDPATH
697 if test "${PWD}" != "" && test "`(cd ${PWD} ; sh -c pwd)`" = "`pwd`" ;
698 then 698 then
699 srcdir="$PWD" 699 srcdir="$PWD"
700 else 700 else
diff --git a/man/cmdargs.texi b/man/cmdargs.texi
index 4409439298c..cc40b3a9680 100644
--- a/man/cmdargs.texi
+++ b/man/cmdargs.texi
@@ -191,6 +191,10 @@ even if @samp{--unibyte} is specified; see @ref{Enabling Multibyte}.)
191Setting the environment variable @env{EMACS_UNIBYTE} has the same 191Setting the environment variable @env{EMACS_UNIBYTE} has the same
192effect. 192effect.
193 193
194The exception to the rule are Emacs Lisp files. An Emacs Lisp file that
195doesn't contain the tag @samp{unibyte: t} is loaded in multibyte mode,
196and thus strings created while loading will be multibyte.
197
194@item --multibyte 198@item --multibyte
195Inhibit the effect of @env{EMACS_UNIBYTE}, so that Emacs 199Inhibit the effect of @env{EMACS_UNIBYTE}, so that Emacs
196uses multibyte characters by default, as usual. 200uses multibyte characters by default, as usual.
diff --git a/src/ChangeLog b/src/ChangeLog
index ea28e7145f9..43a89687ecc 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12000-08-24 Gerd Moellmann <gerd@gnu.org> 12000-08-24 Gerd Moellmann <gerd@gnu.org>
2 2
3 * bytecode.c (mark_byte_stack): Add a comment.
4
3 * frame.h (FRAME_FLAGS_AREA_COLS, FRAME_FLAGS_AREA_WIDTH) 5 * frame.h (FRAME_FLAGS_AREA_COLS, FRAME_FLAGS_AREA_WIDTH)
4 (FRAME_LEFT_FLAGS_AREA_WIDTH): Return 0 unless frame is 6 (FRAME_LEFT_FLAGS_AREA_WIDTH): Return 0 unless frame is
5 a graphical frame. 7 a graphical frame.