diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-03-23 21:00:36 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-03-23 21:00:36 +0000 |
commit | 81c63b50e29e5afd38d48af09860a730be5a84bd (patch) | |
tree | e9146dd61d3ce4789ba582d29ee60afb42224072 | |
parent | 4a330ab7afc2731efaf7ea73388dad0670be66e2 (diff) | |
download | emacs-81c63b50e29e5afd38d48af09860a730be5a84bd.tar.gz emacs-81c63b50e29e5afd38d48af09860a730be5a84bd.tar.bz2 emacs-81c63b50e29e5afd38d48af09860a730be5a84bd.zip |
Document new backend operation `find-file-not-found-hook'.
-rw-r--r-- | lisp/vc.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 943dba229b6..ca9b5be1e81 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -7,7 +7,7 @@ ;; Maintainer: Andre Spiegel <spiegel@gnu.org> ;; Keywords: tools -;; $Id: vc.el,v 1.368 2004/03/15 03:55:24 monnier Exp $ +;; $Id: vc.el,v 1.369 2004/03/21 15:42:14 spiegel Exp $ ;; This file is part of GNU Emacs. @@ -435,8 +435,13 @@ ;; ;; - find-file-hook () ;; -;; Operation called in current buffer when opening a new file. This can +;; Operation called in current buffer when opening a file. This can ;; be used by the backend to setup some local variables it might need. +; +;; - find-file-not-found-hook () +;; +;; Operation called in current buffer when opening a non-existing file. +;; By default, this asks the user if she wants to check out the file. ;;; Code: |