emacs-diffs
[Top][All Lists]
Advanced

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

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


From: David Ponce
Subject: [Emacs-diffs] Changes to emacs/lisp/files.el
Date: Fri, 18 Mar 2005 03:07:55 -0500

Index: emacs/lisp/files.el
diff -c emacs/lisp/files.el:1.745 emacs/lisp/files.el:1.746
*** emacs/lisp/files.el:1.745   Wed Feb  9 15:50:42 2005
--- emacs/lisp/files.el Fri Mar 18 08:07:55 2005
***************
*** 2247,2256 ****
                endpos
                (thisbuf (current-buffer)))
            (save-excursion
!             (if (not (re-search-forward
!                       (concat prefix "[ \t]*End:[ \t]*" suffix)
!                       nil t))
!                 (error "Local variables list is not properly terminated"))
              (beginning-of-line)
              (setq endpos (point)))
  
--- 2247,2257 ----
                endpos
                (thisbuf (current-buffer)))
            (save-excursion
!             (unless (let ((case-fold-search t))
!                       (re-search-forward
!                        (concat prefix "[ \t]*End:[ \t]*" suffix)
!                        nil t))
!               (error "Local variables list is not properly terminated"))
              (beginning-of-line)
              (setq endpos (point)))
  




reply via email to

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