branch: elpa/emacsql commit c82a0e6b4d256a3743b718cfb640fa9efc045f6e Author: Stefan Kangas <ste...@marxist.se> Commit: Stefan Kangas <ste...@marxist.se>
Add public domain statement to remaining files --- emacsql-compiler.el | 2 ++ emacsql-pg.el | 2 ++ sqlite/emacsql.c | 2 ++ tests/emacsql-compiler-tests.el | 2 ++ tests/emacsql-external-tests.el | 2 ++ tests/emacsql-tests.el | 2 ++ 6 files changed, 12 insertions(+) diff --git a/emacsql-compiler.el b/emacsql-compiler.el index 55340e50f7..81d8105492 100644 --- a/emacsql-compiler.el +++ b/emacsql-compiler.el @@ -1,5 +1,7 @@ ;;; emacsql-compile.el --- s-expression SQL compiler -*- lexical-binding: t; -*- +;; This is free and unencumbered software released into the public domain. + ;;; Code: (require 'cl-lib) diff --git a/emacsql-pg.el b/emacsql-pg.el index 0f0c1f8809..812df093ad 100644 --- a/emacsql-pg.el +++ b/emacsql-pg.el @@ -1,5 +1,7 @@ ;;; emacsql-pg.el --- back-end for PostgreSQL via pg -*- lexical-binding: t; -*- +;; This is free and unencumbered software released into the public domain. + ;;; Commentary: ;; Unlike emacsql-psql, this connection type uses Eric Marsden's pg.el diff --git a/sqlite/emacsql.c b/sqlite/emacsql.c index 884c4d2fe6..89cb144bd8 100644 --- a/sqlite/emacsql.c +++ b/sqlite/emacsql.c @@ -1,3 +1,5 @@ +/* This is free and unencumbered software released into the public domain. */ + #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/tests/emacsql-compiler-tests.el b/tests/emacsql-compiler-tests.el index 70228f358c..5c0bca1367 100644 --- a/tests/emacsql-compiler-tests.el +++ b/tests/emacsql-compiler-tests.el @@ -1,5 +1,7 @@ ;;; emacsql-tests.el --- tests for emacsql -*- lexical-binding: t; -*- +;; This is free and unencumbered software released into the public domain. + ;;; Code: (require 'ert) diff --git a/tests/emacsql-external-tests.el b/tests/emacsql-external-tests.el index b00b6c8de9..3d3f3b36ff 100644 --- a/tests/emacsql-external-tests.el +++ b/tests/emacsql-external-tests.el @@ -1,5 +1,7 @@ ;;; emacsql-external-tests.el --- subprocess tests -*- lexical-binding: t; -*- +;; This is free and unencumbered software released into the public domain. + (require 'cl-lib) (require 'ert) (require 'emacsql) diff --git a/tests/emacsql-tests.el b/tests/emacsql-tests.el index 5e556e0632..90284d64f1 100644 --- a/tests/emacsql-tests.el +++ b/tests/emacsql-tests.el @@ -1,5 +1,7 @@ ;;; emacsql-tests.el --- test suite for EmacSQL -*- lexical-binding: t; -*- +;; This is free and unencumbered software released into the public domain. + (require 'cl-lib) (require 'emacsql-compiler-tests) (require 'emacsql-external-tests)