xref: /src/crypto/openssl/doc/dir-locals.example.el (revision c6879c6c14eedbd060ba588a3129a6c60ebbe783)
1737d7e8dSJung-uk Kim;;; This is an example of what a .dir-locals.el suitable for OpenSSL
2737d7e8dSJung-uk Kim;;; development could look like.
3737d7e8dSJung-uk Kim;;;
4737d7e8dSJung-uk Kim;;; Apart from setting the CC mode style to "OpenSSL-II", it also
5737d7e8dSJung-uk Kim;;; makes sure that tabs are never used for indentation in any file,
6737d7e8dSJung-uk Kim;;; and that the fill column is 78.
7737d7e8dSJung-uk Kim;;;
8737d7e8dSJung-uk Kim;;; For more information see (info "(emacs) Directory Variables")
9737d7e8dSJung-uk Kim
10737d7e8dSJung-uk Kim((nil
11737d7e8dSJung-uk Kim  (indent-tabs-mode . nil)
12a43ce912SJung-uk Kim  (fill-column . 70)
13737d7e8dSJung-uk Kim  )
14737d7e8dSJung-uk Kim (c-mode
15737d7e8dSJung-uk Kim  (c-file-style . "OpenSSL-II")))
16