-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #526 from nicolasbock/fix_build
Fix missing build targets
- Loading branch information
Showing
2 changed files
with
19 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
;;; Directory Local Variables | ||
;;; For more information see (info "(emacs) Directory Variables") | ||
|
||
((c-mode | ||
((c-basic-offset . 4) | ||
(c-offsets-alist . ((arglist-intro . 4))))) | ||
(f90-mode | ||
((f90-if-indent . 2) | ||
(f90-do-indent . 2) | ||
(f90-type-indent . 2)))) | ||
((c-mode . (((c-basic-offset . 4) . ((c-offsets-alist | ||
(arglist-intro . 4)))))) | ||
(f90-mode . (((f90-if-indent . 2) . ((f90-do-indent . 2) | ||
(f90-type-indent . 2))))) | ||
(sh-mode . ((sh-basic-offset . 4)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters