aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorMiles Bader2004-12-08 05:02:30 +0000
committerMiles Bader2004-12-08 05:02:30 +0000
commit000fc2b1fad05ccd9e6cdb5810febb091f4b5738 (patch)
tree808f1473847c7c44bc8b28d8edfa086ec25035d1 /src/buffer.c
parent5bc63b073c3c75dbfab1f14423f01cc615e26eeb (diff)
parentad136a7c3b310fa7240dd2adf62f23b454782bd0 (diff)
downloademacs-000fc2b1fad05ccd9e6cdb5810febb091f4b5738.tar.gz
emacs-000fc2b1fad05ccd9e6cdb5810febb091f4b5738.zip
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-74
Merge from emacs--cvs-trunk--0 Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-709 Update from CVS: src/indent.c (Fvertical_motion): Fix last change. * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-710 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-715 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-716 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-74 Update from CVS
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c
index b3dd6149487..15dbd2df34f 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5178,7 +5178,13 @@ init_buffer ()
5178 } 5178 }
5179#endif /* not VMS */ 5179#endif /* not VMS */
5180 5180
5181 current_buffer->directory = build_string (buf); 5181 current_buffer->directory = make_unibyte_string (buf, strlen (buf));
5182 if (! NILP (buffer_defaults.enable_multibyte_characters))
5183 /* At this momemnt, we still don't know how to decode the
5184 direcotry name. So, we keep the bytes in multibyte form so
5185 that ENCODE_FILE correctly gets the original bytes. */
5186 current_buffer->directory
5187 = string_to_multibyte (current_buffer->directory);
5182 5188
5183 /* Add /: to the front of the name 5189 /* Add /: to the front of the name
5184 if it would otherwise be treated as magic. */ 5190 if it would otherwise be treated as magic. */
@@ -5700,10 +5706,13 @@ scrolled, the top and bottom line of the window are marked with up and down
5700arrow bitmaps. 5706arrow bitmaps.
5701 5707
5702If value is a symbol `left' or `right', both angle and arrow bitmaps 5708If value is a symbol `left' or `right', both angle and arrow bitmaps
5703are displayed in the left or right fringe, resp. 5709are displayed in the left or right fringe, resp. Any other value
5710that doesn't look like an alist means displat the angle bitmaps in
5711the left fringe but no arrows.
5704 5712
5705If value is an alist, each element (INDICATOR . POSITION) specifies 5713You can exercise more precise control by using an alist as the
5706the position of one of the indicators. INDICATOR is one of `top', 5714value. Each alist element (INDICATOR . POSITION) specifies
5715where to show one of the indicators. INDICATOR is one of `top',
5707`bottom', `up', `down', or t, which specifies the default position, 5716`bottom', `up', `down', or t, which specifies the default position,
5708and POSITION is one of `left', `right', or nil, meaning do not show 5717and POSITION is one of `left', `right', or nil, meaning do not show
5709this indicator. 5718this indicator.