emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/comint.el


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/comint.el
Date: Mon, 17 Jun 2002 04:10:22 -0400

Index: emacs/lisp/comint.el
diff -c emacs/lisp/comint.el:1.276 emacs/lisp/comint.el:1.277
*** emacs/lisp/comint.el:1.276  Sat Jun 15 10:26:06 2002
--- emacs/lisp/comint.el        Mon Jun 17 04:10:22 2002
***************
*** 779,788 ****
           (process-mark (get-buffer-process (current-buffer))))
         (point))
        ;; Insert the clicked-upon input
!       (insert-buffer-substring
!        (current-buffer)
!        (previous-single-char-property-change (1+ pos) 'field)
!        (next-single-char-property-change pos 'field)))))
  
  
  
--- 779,787 ----
           (process-mark (get-buffer-process (current-buffer))))
         (point))
        ;; Insert the clicked-upon input
!       (insert (buffer-substring-no-properties
!              (previous-single-char-property-change (1+ pos) 'field)
!              (next-single-char-property-change pos 'field))))))
  
  
  



reply via email to

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