comparison lisp/autoinsert.el @ 662:8a533acedb77

*** empty log message ***
author Eric S. Raymond <esr@snark.thyrsus.com>
date Sat, 30 May 1992 23:54:21 +0000
parents 289ee39b1637
children 4f28bd14272c
comparison
equal deleted inserted replaced
661:36fbc3f71803 662:8a533acedb77
1 ;; Automatic mode-dependent insertion of text into new files. 1 ;;; autoinsert.el --- automatic mode-dependent insertion of text into new files
2
2 ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. 3 ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
3 4
4 ;; This file is part of GNU Emacs. 5 ;; This file is part of GNU Emacs.
5 6
6 ;; GNU Emacs is free software; you can redistribute it and/or modify 7 ;; GNU Emacs is free software; you can redistribute it and/or modify
88 89
89 ;; Make this feature take effect when a nonexistent file is visited. 90 ;; Make this feature take effect when a nonexistent file is visited.
90 (setq find-file-not-found-hooks 91 (setq find-file-not-found-hooks
91 (cons 'insert-auto-insert-files 92 (cons 'insert-auto-insert-files
92 find-file-not-found-hooks)) 93 find-file-not-found-hooks))
94
95 ;;; autoinsert.el ends here