diff options
| author | Gerd Moellmann | 2000-08-24 11:42:48 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-08-24 11:42:48 +0000 |
| commit | 17494071e6e677db065dcc140e078c3a90809e98 (patch) | |
| tree | 1165e352ddbaa54f9648f3cf946155bfdfe945f6 | |
| parent | dff13d039cf164c545d3ea95d3cddef3370eac89 (diff) | |
| download | emacs-17494071e6e677db065dcc140e078c3a90809e98.tar.gz emacs-17494071e6e677db065dcc140e078c3a90809e98.zip | |
*** empty log message ***
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rwxr-xr-x | configure | 8 | ||||
| -rw-r--r-- | man/cmdargs.texi | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 2 |
4 files changed, 16 insertions, 4 deletions
| @@ -1,3 +1,9 @@ | |||
| 1 | 2000-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 | |||
| 1 | 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il> | 7 | 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 8 | ||
| 3 | * info/dir (WoMan): Add entry. | 9 | * info/dir (WoMan): Add entry. |
| @@ -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). | ||
| 691 | unset CDPATH | ||
| 690 | case "${srcdir}" in | 692 | case "${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}.) | |||
| 191 | Setting the environment variable @env{EMACS_UNIBYTE} has the same | 191 | Setting the environment variable @env{EMACS_UNIBYTE} has the same |
| 192 | effect. | 192 | effect. |
| 193 | 193 | ||
| 194 | The exception to the rule are Emacs Lisp files. An Emacs Lisp file that | ||
| 195 | doesn't contain the tag @samp{unibyte: t} is loaded in multibyte mode, | ||
| 196 | and thus strings created while loading will be multibyte. | ||
| 197 | |||
| 194 | @item --multibyte | 198 | @item --multibyte |
| 195 | Inhibit the effect of @env{EMACS_UNIBYTE}, so that Emacs | 199 | Inhibit the effect of @env{EMACS_UNIBYTE}, so that Emacs |
| 196 | uses multibyte characters by default, as usual. | 200 | uses 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 @@ | |||
| 1 | 2000-08-24 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-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. |