emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/xdisp.c [emacs-unicode-2]
Date: Wed, 15 Sep 2004 05:22:48 -0400

Index: emacs/src/xdisp.c
diff -c emacs/src/xdisp.c:1.843.2.21 emacs/src/xdisp.c:1.843.2.22
*** emacs/src/xdisp.c:1.843.2.21        Thu Sep  9 09:36:35 2004
--- emacs/src/xdisp.c   Wed Sep 15 09:00:00 2004
***************
*** 16228,16234 ****
     generated by character C.  PRECISION >= 0 means don't return a
     string longer than that value.  FIELD_WIDTH > 0 means pad the
     string returned with spaces to that value.  Return 1 in *MULTIBYTE
!    if the result is multibyte text.  */
  
  static char lots_of_dashes[] = 
"--------------------------------------------------------------------------------------------------------------------------------------------";
  
--- 16228,16237 ----
     generated by character C.  PRECISION >= 0 means don't return a
     string longer than that value.  FIELD_WIDTH > 0 means pad the
     string returned with spaces to that value.  Return 1 in *MULTIBYTE
!    if the result is multibyte text.
! 
!    Note we operate on the current buffer for most purposes,
!    the exception being w->base_line_pos.  */
  
  static char lots_of_dashes[] = 
"--------------------------------------------------------------------------------------------------------------------------------------------";
  
***************
*** 16242,16248 ****
    Lisp_Object obj;
    struct frame *f = XFRAME (WINDOW_FRAME (w));
    char *decode_mode_spec_buf = f->decode_mode_spec_buffer;
!   struct buffer *b = XBUFFER (w->buffer);
  
    obj = Qnil;
    *multibyte = 0;
--- 16245,16251 ----
    Lisp_Object obj;
    struct frame *f = XFRAME (WINDOW_FRAME (w));
    char *decode_mode_spec_buf = f->decode_mode_spec_buffer;
!   struct buffer *b = current_buffer;
  
    obj = Qnil;
    *multibyte = 0;
***************
*** 16544,16550 ****
  
      case 's':
        /* status of process */
!       obj = Fget_buffer_process (w->buffer);
        if (NILP (obj))
        return "no process";
  #ifdef subprocesses
--- 16547,16553 ----
  
      case 's':
        /* status of process */
!       obj = Fget_buffer_process (Fcurrent_buffer ());
        if (NILP (obj))
        return "no process";
  #ifdef subprocesses




reply via email to

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