]> git.eshelyaron.com Git - emacs.git/commitdiff
elide-head: Add support for modified BSD license
authorStefan Kangas <stefan@marxist.se>
Sun, 2 Jan 2022 18:25:02 +0000 (19:25 +0100)
committerStefan Kangas <stefan@marxist.se>
Sun, 2 Jan 2022 18:26:34 +0000 (19:26 +0100)
* lisp/elide-head.el (elide-head-headers-to-hide): Add support for
the modified BSD license (3-clause BSD).

lisp/elide-head.el

index 30772fa514b2c50b42d287dbbf1b80f67dc6e7f8..79af01bd480597cae0e4b5af687dc17229f84cb2 100644 (file)
   :group 'tools)
 
 (defcustom elide-head-headers-to-hide
-  `(("is free software[:;] you can redistribute it" . ; GNU boilerplate
+  `(;; GNU GPL
+    ("is free software[:;] you can redistribute it" .
      "\\(If not, see <https?://www\\.gnu\\.org/licenses/>\\|\
 Boston, MA 0211\\(1-1307\\|0-1301\\), USA\\|\
 675 Mass Ave, Cambridge, MA 02139, USA\\)\\.")
+    ;; FreeBSD license
     (,(rx (or "The Regents of the University of California.  All rights reserved."
               "Redistribution and use in source and binary"))
-     . "THE POSSIBILITY OF SUCH DAMAGE\\.") ; BSD
+     . "THE POSSIBILITY OF SUCH DAMAGE\\.")
+    ;; X11 and Expat
     ("Permission is hereby granted, free of charge" .
-     ,(rx (or "authorization from the X Consortium."           ; X11
-              "THE USE OR OTHER DEALINGS IN THE SOFTWARE.")))) ; Expat
+     ,(rx (or "authorization from the X Consortium."          ; X11
+              "THE USE OR OTHER DEALINGS IN THE SOFTWARE."))) ; Expat
+    ;; Modified BSD license (3-clause)
+    ("Redistribution and use in source and binary forms"
+     . "POSSIBILITY OF SUCH DAMAGE\\."))
   "Alist of regexps defining start and end of text to elide.
 
 The cars of elements of the list are searched for in order.  Text is