emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/buffer.c [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/buffer.c [emacs-unicode-2]
Date: Wed, 08 Dec 2004 00:48:27 -0500

Index: emacs/src/buffer.c
diff -c emacs/src/buffer.c:1.435.2.10 emacs/src/buffer.c:1.435.2.11
*** emacs/src/buffer.c:1.435.2.10       Wed Oct 27 05:42:02 2004
--- emacs/src/buffer.c  Wed Dec  8 05:02:21 2004
***************
*** 5178,5184 ****
      }
  #endif /* not VMS */
  
!   current_buffer->directory = build_string (buf);
  
    /* Add /: to the front of the name
       if it would otherwise be treated as magic.  */
--- 5178,5190 ----
      }
  #endif /* not VMS */
  
!   current_buffer->directory = make_unibyte_string (buf, strlen (buf));
!   if (! NILP (buffer_defaults.enable_multibyte_characters))
!     /* At this momemnt, we still don't know how to decode the
!        direcotry name.  So, we keep the bytes in multibyte form so
!        that ENCODE_FILE correctly gets the original bytes.  */
!     current_buffer->directory
!       = string_to_multibyte (current_buffer->directory);
  
    /* Add /: to the front of the name
       if it would otherwise be treated as magic.  */
***************
*** 5700,5709 ****
  arrow bitmaps.
  
  If value is a symbol `left' or `right', both angle and arrow bitmaps
! are displayed in the left or right fringe, resp.
! 
! If value is an alist, each element (INDICATOR . POSITION) specifies
! the position of one of the indicators.  INDICATOR is one of `top',
  `bottom', `up', `down', or t, which specifies the default position,
  and POSITION is one of `left', `right', or nil, meaning do not show
  this indicator.
--- 5706,5718 ----
  arrow bitmaps.
  
  If value is a symbol `left' or `right', both angle and arrow bitmaps
! are displayed in the left or right fringe, resp.  Any other value
! that doesn't look like an alist means displat the angle bitmaps in
! the left fringe but no arrows.
! 
! You can exercise more precise control by using an alist as the
! value.  Each alist element (INDICATOR . POSITION) specifies
! where to show one of the indicators.  INDICATOR is one of `top',
  `bottom', `up', `down', or t, which specifies the default position,
  and POSITION is one of `left', `right', or nil, meaning do not show
  this indicator.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]