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 [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/files.el [lexbind]
Date: Tue, 06 Jul 2004 07:03:52 -0400

Index: emacs/lisp/files.el
diff -c emacs/lisp/files.el:1.583.2.15 emacs/lisp/files.el:1.583.2.16
*** emacs/lisp/files.el:1.583.2.15      Tue Jul  6 10:10:47 2004
--- emacs/lisp/files.el Tue Jul  6 10:17:16 2004
***************
*** 527,533 ****
  
  (defun parse-colon-path (cd-path)
    "Explode a search path into a list of directory names.
! Directories are separated by occurrences of `path-separator'."
    ;; We could use split-string here.
    (and cd-path
         (let (cd-list (cd-start 0) cd-colon)
--- 527,534 ----
  
  (defun parse-colon-path (cd-path)
    "Explode a search path into a list of directory names.
! Directories are separated by occurrences of `path-separator'
! \(which is colon in GNU and GNU-like systems)."
    ;; We could use split-string here.
    (and cd-path
         (let (cd-list (cd-start 0) cd-colon)
***************
*** 562,568 ****
    "Make DIR become the current buffer's default directory.
  If your environment includes a `CDPATH' variable, try each one of
  that list of directories (separated by occurrences of
! `path-separator') when resolving a relative directory name."
    (interactive
     (list (read-directory-name "Change default directory: "
                         default-directory default-directory
--- 563,570 ----
    "Make DIR become the current buffer's default directory.
  If your environment includes a `CDPATH' variable, try each one of
  that list of directories (separated by occurrences of
! `path-separator') when resolving a relative directory name.
! The path separator is colon in GNU and GNU-like systems."
    (interactive
     (list (read-directory-name "Change default directory: "
                         default-directory default-directory
***************
*** 3480,3486 ****
  The idea behind the NOCONFIRM argument is that it should be
  non-nil if the buffer is going to be reverted without asking the
  user.  In such situations, one has to be careful with potentially
! time consuming operations.")
  
  (defvar before-revert-hook nil
    "Normal hook for `revert-buffer' to run before reverting.
--- 3482,3491 ----
  The idea behind the NOCONFIRM argument is that it should be
  non-nil if the buffer is going to be reverted without asking the
  user.  In such situations, one has to be careful with potentially
! time consuming operations.
! 
! For more information on how this variable is used by Auto Revert mode,
! see Info node `(emacs-xtra)Supporting additional buffers'.")
  
  (defvar before-revert-hook nil
    "Normal hook for `revert-buffer' to run before reverting.




reply via email to

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