emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/process.c


From: Kim F. Storm
Subject: [Emacs-diffs] Changes to emacs/src/process.c
Date: Thu, 16 Jan 2003 07:59:19 -0500

Index: emacs/src/process.c
diff -c emacs/src/process.c:1.395 emacs/src/process.c:1.396
*** emacs/src/process.c:1.395   Tue Jan 14 08:36:14 2003
--- emacs/src/process.c Thu Jan 16 07:59:18 2003
***************
*** 844,853 ****
         2, 2, 0,
         doc: /* Give PROCESS the filter function FILTER; nil means no filter.
  t means stop accepting output from the process.
! When a process has a filter, each time it does output
! the entire string of output is passed to the filter.
  The filter gets two arguments: the process and the string of output.
! If the process has a filter, its buffer is not used for output.  */)
       (process, filter)
       register Lisp_Object process, filter;
  {
--- 844,861 ----
         2, 2, 0,
         doc: /* Give PROCESS the filter function FILTER; nil means no filter.
  t means stop accepting output from the process.
! 
! When a process has a filter, its buffer is not used for output.
! Instead, each time it does output, the entire string of output is
! passed to the filter.  
! 
  The filter gets two arguments: the process and the string of output.
! The string argument is normally a multibyte string, except:
! - if the process' input coding system is no-conversion or raw-text,
!   it is a unibyte string (the non-converted input), or else
! - if `default-enable-multibyte-characters' is nil, it is a unibyte
!   string (the result of converting the decoded input multibyte
!   string to unibyte with `string-make-unibyte').  */)
       (process, filter)
       register Lisp_Object process, filter;
  {




reply via email to

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