ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
16 lines
449 B
EmacsLisp
16 lines
449 B
EmacsLisp
;;; This is an example of what a .dir-locals.el suitable for OpenSSL
|
|
;;; development could look like.
|
|
;;;
|
|
;;; Apart from setting the CC mode style to "OpenSSL-II", it also
|
|
;;; makes sure that tabs are never used for indentation in any file,
|
|
;;; and that the fill column is 78.
|
|
;;;
|
|
;;; For more information see (info "(emacs) Directory Variables")
|
|
|
|
((nil
|
|
(indent-tabs-mode . nil)
|
|
(fill-column . 70)
|
|
)
|
|
(c-mode
|
|
(c-file-style . "OpenSSL-II")))
|