Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
17494071
Commit
17494071
authored
Aug 24, 2000
by
Gerd Moellmann
Browse files
*** empty log message ***
parent
dff13d03
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
4 deletions
+16
-4
ChangeLog
ChangeLog
+6
-0
configure
configure
+4
-4
man/cmdargs.texi
man/cmdargs.texi
+4
-0
src/ChangeLog
src/ChangeLog
+2
-0
No files found.
ChangeLog
View file @
17494071
2000-08-24 Gerd Moellmann <gerd@gnu.org>
* configure.in <making srcdir absolute>: Unset CDPATH in case $PWD
contains a relative path. Protect against unusable values of
$PWD.
2000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
* info/dir (WoMan): Add entry.
...
...
configure
View file @
17494071
...
...
@@ -684,17 +684,17 @@ fi
#### Make srcdir absolute, if it isn't already. It's important to
#### avoid running the path through pwd unnecessary, since pwd can
#### avoid running the path through pwd unnecessar
il
y, since pwd can
#### give you automounter prefixes, which can go away. We do all this
#### so Emacs can find its files when run uninstalled.
## Make sure CDPATH doesn't affect cd (in case PWD is relative).
unset CDPATH
case "${srcdir}" in
/* ) ;;
. )
## We may be able to use the $PWD environment variable to make this
## absolute. But sometimes PWD is inaccurate.
## Make sure CDPATH doesn't affect cd (in case PWD is relative).
unset CDPATH
if test "${PWD}" != "" && test "`(cd ${PWD} ; sh -c pwd)`" = "`pwd`" ;
if test ".${PWD}" != "." && test ".`(cd ${PWD} ; sh -c pwd)`" = ".${PWD}" ;
then
srcdir="$PWD"
else
...
...
man/cmdargs.texi
View file @
17494071
...
...
@@ -191,6 +191,10 @@ even if @samp{--unibyte} is specified; see @ref{Enabling Multibyte}.)
Setting the environment variable @env{EMACS_UNIBYTE} has the same
effect.
The exception to the rule are Emacs Lisp files. An Emacs Lisp file that
doesn't contain the tag @samp{unibyte: t} is loaded in multibyte mode,
and thus strings created while loading will be multibyte.
@item --multibyte
Inhibit the effect of @env{EMACS_UNIBYTE}, so that Emacs
uses multibyte characters by default, as usual.
...
...
src/ChangeLog
View file @
17494071
2000-08-24 Gerd Moellmann <gerd@gnu.org>
* bytecode.c (mark_byte_stack): Add a comment.
* frame.h (FRAME_FLAGS_AREA_COLS, FRAME_FLAGS_AREA_WIDTH)
(FRAME_LEFT_FLAGS_AREA_WIDTH): Return 0 unless frame is
a graphical frame.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment