From 5d56820e0ab1fc147b45728c6ac89c4ac0b90e54 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Tue, 2 Apr 2019 12:34:00 +0100 Subject: Copyright notice added to remaining files After doing a systematic search for files without a copyright notice, a few more were found that didn't have a notice. So a notice was added for them. I used this Bash command to find the files: for f in $(find ./ -type f); do \ if [[ $f != *.git* ]]; then \ n=$(grep -i copyright $f | wc -l); \ echo "$n $f"; \ fi; \ done | awk '$1==0' --- .dir-locals.el | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.dir-locals.el') diff --git a/.dir-locals.el b/.dir-locals.el index ae7e990..3ffb548 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -8,6 +8,11 @@ ;; or the number of spaces to be used for indentation. ;; ;; For more information see (info "(emacs) Directory Variables") +;; +;; Copying and distribution of this file, with or without modification, +;; are permitted in any medium without royalty provided the copyright +;; notice and this notice are preserved. This file is offered as-is, +;; without any warranty. ( ;; C files. -- cgit v1.2.1