comparison lisp/vc.el @ 103596:0c5de07aff62

Remove find-file-not-found-hook VC method. (Bug#2757) * vc-hooks.el (vc-file-not-found-hook) (vc-default-find-file-not-found-hook): Remove functions. (find-file-not-found-functions): Do not add vc-file-not-found-hook. * vc-rcs.el (vc-rcs-find-file-not-found-hook): Remove function. * vc.el: * vc-hg.el: * vc-git.el: Do not mention find-file-not-found-hook VC method.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 26 Jun 2009 23:53:55 +0000
parents af4ee0cb7fb7
children f2d3a9b75762
comparison
equal deleted inserted replaced
103595:de3fb78ac3df 103596:0c5de07aff62
510 ;; 510 ;;
511 ;; - find-file-hook () 511 ;; - find-file-hook ()
512 ;; 512 ;;
513 ;; Operation called in current buffer when opening a file. This can 513 ;; Operation called in current buffer when opening a file. This can
514 ;; be used by the backend to setup some local variables it might need. 514 ;; be used by the backend to setup some local variables it might need.
515 ;;
516 ;; - find-file-not-found-hook ()
517 ;;
518 ;; Operation called in current buffer when opening a non-existing file.
519 ;; By default, this asks the user if she wants to check out the file.
520 ;; 515 ;;
521 ;; - extra-menu () 516 ;; - extra-menu ()
522 ;; 517 ;;
523 ;; Return a menu keymap, the items in the keymap will appear at the 518 ;; Return a menu keymap, the items in the keymap will appear at the
524 ;; end of the Version Control menu. The goal is to allow backends 519 ;; end of the Version Control menu. The goal is to allow backends