File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 11
11
(coq-project-find-file
12
12
(and (boundp 'coq-project-find-file ) coq-project-find-file)))
13
13
; ; coq tags file and coq debugger executable
14
- (setq tags-file-name (concat coq-root-directory " TAGS" )
15
- camldebug-command-name (concat coq-root-directory
14
+ (set (make-local-variable 'tags-file-name )
15
+ (concat coq-root-directory " TAGS" ))
16
+ (setq camldebug-command-name (concat coq-root-directory
16
17
" dev/ocamldebug-coq" ))
17
18
18
19
; ; Setting the compilation directory to coq root. This is
19
20
; ; mutually exclusive with the setting of default-directory
20
21
; ; below. Also setting the path for next error.
21
22
(unless coq-project-find-file
22
- (setq compile-command (concat " make -C " coq-root-directory))
23
- (setq compilation-search-path (cons coq-root-directory nil )))
23
+ (set (make-local-variable 'compile-command )
24
+ (concat " make -C " coq-root-directory))
25
+ (set (make-local-variable 'compilation-search-path )
26
+ (cons coq-root-directory nil )))
24
27
25
28
; ; Set default directory to coq root ONLY IF variable
26
29
; ; coq-project-find-file is non nil. This should remain a
You can’t perform that action at this time.
0 commit comments