mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-27 06:27:51 +00:00
da2b275658
* .ccls: Remove -std=c99: it disables __attribute__ causing warnings. * .dir-locals.el: Force the C coding style to "gnu". * make-gdb.py: Add GDB macros for pretty-printing GNU make structs. * scripts/copyright-update: Use GNULIB_SRCDIR to find update-copyright.
18 lines
915 B
EmacsLisp
18 lines
915 B
EmacsLisp
(
|
|
(nil . ((bug-reference-bug-regexp . "\\(\\)\\bSV[- ]\\([0-9]+\\)")
|
|
(bug-reference-url-format . "https://savannah.gnu.org/bugs/?%s")
|
|
(ccls-initialization-options . (:index (:threads 6
|
|
:initialBlacklist ("/make-[0-9]" "tests/work/" "/\\.deps" "/\\..*cache" "/\\.git"))))
|
|
(lsp-file-watch-ignored . ("/\\.git$"
|
|
"/\\..*cache$"
|
|
;; autotools content
|
|
"/\\.deps$"
|
|
"/autom4te\\.cache$"
|
|
"/build-aux$"
|
|
;; make-specific content
|
|
"/doc/manual$"
|
|
"/tests/work$"
|
|
"/make-[0-9]"))
|
|
))
|
|
(c-mode . ((c-file-style . "gnu")))
|
|
)
|