Mercurial > emacs
comparison lisp/vc.el @ 5015:368dd7e8095d
vc-static-header-alist shouldn't have been declared const.
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Mon, 15 Nov 1993 04:13:48 +0000 |
parents | 9da6c6c24ddd |
children | b27badfb4040 |
comparison
equal
deleted
inserted
replaced
5014:6062331f7430 | 5015:368dd7e8095d |
---|---|
102 ;; Header-insertion hair | 102 ;; Header-insertion hair |
103 | 103 |
104 (defvar vc-header-alist | 104 (defvar vc-header-alist |
105 '((SCCS "\%W\%") (RCS "\$Id\$")) | 105 '((SCCS "\%W\%") (RCS "\$Id\$")) |
106 "*Header keywords to be inserted when `vc-insert-headers' is executed.") | 106 "*Header keywords to be inserted when `vc-insert-headers' is executed.") |
107 (defconst vc-static-header-alist | 107 (defvar vc-static-header-alist |
108 '(("\\.c$" . | 108 '(("\\.c$" . |
109 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n")) | 109 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n")) |
110 "*Associate static header string templates with file types. A \%s in the | 110 "*Associate static header string templates with file types. A \%s in the |
111 template is replaced with the first string associated with the file's | 111 template is replaced with the first string associated with the file's |
112 version-control type in `vc-header-alist'.") | 112 version-control type in `vc-header-alist'.") |