branch: externals/org-transclusion commit 5a5a94ebeed1cc5f224fa2a764d4d844d55aa783 Author: Noboru Ota <m...@nobiot.com> Commit: Noboru Ota <m...@nobiot.com>
intrnl:add time-stamps vars to .dir-locals.el File name needs to be "locals" -- corrected --- .dir-local.el | 3 --- .dir-locals.el | 11 +++++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.dir-local.el b/.dir-local.el deleted file mode 100644 index e523a131a7..0000000000 --- a/.dir-local.el +++ /dev/null @@ -1,3 +0,0 @@ -((emacs-lisp-mode - (fill-column . 80) - (indent-tabs-mode . nil))) diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000000..ec46ede242 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,11 @@ +((emacs-lisp-mode + (fill-column . 80) + (indent-tabs-mode . nil) + (time-stamp-format . "%02d %:B %Y") + (time-stamp-start . "modified:[ ]+\\\\?") + (time-stamp-end . "$") + ;; "Last modified in source code files are at line 20" + (time-stamp-line-limit . 20) + ;; Need this locale to be "C" or "en_US.UTF-8" or something to standardize the + ;; time stamp with English + (system-time-locale . "C")))