comparison lisp/simple.el @ 29345:a4d9a2ab3c73

(newline): Don't bind before-change-function, after-change-function.
author Dave Love <fx@gnu.org>
date Wed, 31 May 2000 22:50:41 +0000
parents a14ae8095fe4
children fa2c8534a53a
comparison
equal deleted inserted replaced
29344:2f44841e5506 29345:a4d9a2ab3c73
61 ;; the end of the previous line. 61 ;; the end of the previous line.
62 (let ((flag (and (not (bobp)) 62 (let ((flag (and (not (bobp))
63 (bolp) 63 (bolp)
64 ;; Make sure no functions want to be told about 64 ;; Make sure no functions want to be told about
65 ;; the range of the changes. 65 ;; the range of the changes.
66 (not after-change-function)
67 (not before-change-function)
68 (not after-change-functions) 66 (not after-change-functions)
69 (not before-change-functions) 67 (not before-change-functions)
70 ;; Make sure there are no markers here. 68 ;; Make sure there are no markers here.
71 (not (buffer-has-markers-at (1- (point)))) 69 (not (buffer-has-markers-at (1- (point))))
72 (not (buffer-has-markers-at (point))) 70 (not (buffer-has-markers-at (point)))