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 [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/buffer.c [lexbind]
Date: Wed, 08 Dec 2004 18:57:22 -0500

Index: emacs/src/buffer.c
diff -c emacs/src/buffer.c:1.388.2.21 emacs/src/buffer.c:1.388.2.22
*** emacs/src/buffer.c:1.388.2.21       Fri Oct 29 02:05:11 2004
--- emacs/src/buffer.c  Wed Dec  8 23:36:25 2004
***************
*** 5162,5168 ****
      }
  #endif /* not VMS */
  
!   current_buffer->directory = build_string (buf);
  
    /* Add /: to the front of the name
       if it would otherwise be treated as magic.  */
--- 5162,5174 ----
      }
  #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.  */
***************
*** 5684,5693 ****
  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.
--- 5690,5702 ----
  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]