branch: externals/phps-mode commit c2a7af2a98e877640730dfb6b041a0b00a2cb6f0 Author: Christian Johansson <christ...@cvj.se> Commit: Christian Johansson <christ...@cvj.se>
Updated copyright years --- admin/phps-mode-automation.el | 17 +---------------- phps-mode-ast-bookkeeping.el | 2 +- phps-mode-ast-imenu.el | 2 +- phps-mode-ast.el | 2 +- phps-mode-automation-grammar.el | 19 ++----------------- phps-mode-automation-parser-generator.el | 17 +---------------- phps-mode-flymake.el | 17 +---------------- phps-mode-indent.el | 2 +- phps-mode-lex-analyzer.el | 17 +---------------- phps-mode-lexer.el | 17 +---------------- phps-mode-macros.el | 2 +- phps-mode-parser-sdt.el | 2 +- phps-mode-parser.el | 17 +---------------- phps-mode-serial.el | 2 +- phps-mode-syntax-color.el | 2 +- phps-mode-syntax-table.el | 2 +- phps-mode-test.el | 17 +---------------- phps-mode.el | 2 +- test/phps-mode-test-ast.el | 17 +---------------- test/phps-mode-test-indent.el | 2 +- test/phps-mode-test-integration.el | 17 +---------------- test/phps-mode-test-lex-analyzer.el | 2 +- test/phps-mode-test-lexer.el | 17 +---------------- test/phps-mode-test-parser.el | 17 +---------------- test/phps-mode-test-syntax-table.el | 17 +---------------- 25 files changed, 26 insertions(+), 221 deletions(-) diff --git a/admin/phps-mode-automation.el b/admin/phps-mode-automation.el index 6d8530d794..86c6d1b487 100644 --- a/admin/phps-mode-automation.el +++ b/admin/phps-mode-automation.el @@ -1,21 +1,6 @@ ;;; phps-mode-automation --- Generate a Wisent Parser file -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. - -;; This file is not part of GNU Emacs. - -;; This program is free software; you can redistribute it and/or -;; modify it under the terms of the GNU General Public License as -;; published by the Free Software Foundation; either version 2, or (at -;; your option) any later version. - -;; This program is distributed in the hope that it will be useful, but -;; WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;; General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode-ast-bookkeeping.el b/phps-mode-ast-bookkeeping.el index 3d69800add..27af096e27 100644 --- a/phps-mode-ast-bookkeeping.el +++ b/phps-mode-ast-bookkeeping.el @@ -1,6 +1,6 @@ ;;; phps-mode-ast-bookkeeping.el --- Bookkeeping from AST -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode-ast-imenu.el b/phps-mode-ast-imenu.el index 3333f7ddda..5afe86b339 100644 --- a/phps-mode-ast-imenu.el +++ b/phps-mode-ast-imenu.el @@ -1,6 +1,6 @@ ;;; phps-mode-ast-imenu.el --- Imenu from AST -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode-ast.el b/phps-mode-ast.el index ba25eac4de..7ff955615d 100644 --- a/phps-mode-ast.el +++ b/phps-mode-ast.el @@ -1,6 +1,6 @@ ;;; phps-mode-ast.el --- Abstract Syntax Tree functions -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode-automation-grammar.el b/phps-mode-automation-grammar.el index a4bc2fcfc7..ebb37e4f81 100644 --- a/phps-mode-automation-grammar.el +++ b/phps-mode-automation-grammar.el @@ -1,21 +1,6 @@ ;;; phps-mode-automation-grammar --- Grammar -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. - -;; This file is not part of GNU Emacs. - -;; This program is free software; you can redistribute it and/or -;; modify it under the terms of the GNU General Public License as -;; published by the Free Software Foundation; either version 2, or (at -;; your option) any later version. - -;; This program is distributed in the hope that it will be useful, but -;; WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;; General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: @@ -48,7 +33,7 @@ (defvar phps-mode-automation-grammar--copyright - ";; Copyright (C) 2018-2021 Free Software Foundation, Inc.\n\n;; This file is not part of GNU Emacs.\n\n;; GNU Emacs is free software: you can redistribute it and/or modify\n;; it under the terms of the GNU General Public License as published by\n;; the Free Software Foundation, either version 3 of the License, or\n;; (at your option) any later version.\n\n;; GNU Emacs is distributed in the hope that it will be useful,\n;; but WITHOUT ANY WARRANTY; without even the implied warranty of [...] + ";; Copyright (C) 2018-2022 Free Software Foundation, Inc.\n\n;; This file is not part of GNU Emacs.\n\n\n" "Copyright contents for parser.") (defvar diff --git a/phps-mode-automation-parser-generator.el b/phps-mode-automation-parser-generator.el index c6cfaafc5d..140954d4c6 100644 --- a/phps-mode-automation-parser-generator.el +++ b/phps-mode-automation-parser-generator.el @@ -1,21 +1,6 @@ ;;; phps-mode-automation-parser-generator --- Generate a parser for PHP YACC grammar -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. - -;; This file is not part of GNU Emacs. - -;; This program is free software; you can redistribute it and/or -;; modify it under the terms of the GNU General Public License as -;; published by the Free Software Foundation; either version 2, or (at -;; your option) any later version. - -;; This program is distributed in the hope that it will be useful, but -;; WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;; General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode-flymake.el b/phps-mode-flymake.el index ab3c5ec9f9..4e244b09b0 100644 --- a/phps-mode-flymake.el +++ b/phps-mode-flymake.el @@ -1,21 +1,6 @@ ;;; phps-mode-flymake.el --- Flymake support for PHPs -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. - -;; This file is not part of GNU Emacs. - -;; This program is free software; you can redistribute it and/or -;; modify it under the terms of the GNU General Public License as -;; published by the Free Software Foundation; either version 2, or (at -;; your option) any later version. - -;; This program is distributed in the hope that it will be useful, but -;; WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;; General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode-indent.el b/phps-mode-indent.el index 011bad6f12..77cebafdd0 100644 --- a/phps-mode-indent.el +++ b/phps-mode-indent.el @@ -1,6 +1,6 @@ ;;; phps-mode-indent.el -- Indentation for phps-mode -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. diff --git a/phps-mode-lex-analyzer.el b/phps-mode-lex-analyzer.el index 5d691323b2..9ac9194e5f 100644 --- a/phps-mode-lex-analyzer.el +++ b/phps-mode-lex-analyzer.el @@ -1,21 +1,6 @@ ;;; phps-mode-lex-analyzer.el -- Lex analyzer for PHPs -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. - -;; This file is not part of GNU Emacs. - -;; GNU Emacs is free software: you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; GNU Emacs is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode-lexer.el b/phps-mode-lexer.el index 90c10ef07b..d38b918096 100644 --- a/phps-mode-lexer.el +++ b/phps-mode-lexer.el @@ -1,21 +1,6 @@ ;;; phps-mode-lexer.el -- Lexer for PHPs -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. - -;; This file is not part of GNU Emacs. - -;; GNU Emacs is free software: you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; GNU Emacs is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode-macros.el b/phps-mode-macros.el index 5591e6fed8..c3cffb5e82 100644 --- a/phps-mode-macros.el +++ b/phps-mode-macros.el @@ -1,6 +1,6 @@ ;;; phps-mode-macros.el --- Macros for major mode -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode-parser-sdt.el b/phps-mode-parser-sdt.el index 7a292bd198..07edec1924 100644 --- a/phps-mode-parser-sdt.el +++ b/phps-mode-parser-sdt.el @@ -1,6 +1,6 @@ ;;; phps-mode-parser-sdt.el --- Syntax directed translation for grammar -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode-parser.el b/phps-mode-parser.el index 17f0b372b7..d0fee5bb56 100644 --- a/phps-mode-parser.el +++ b/phps-mode-parser.el @@ -1,21 +1,6 @@ ;;; phps-mode-parser.el --- Exported Emacs Parser Generator -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. - -;; This file is not part of GNU Emacs. - -;; GNU Emacs is free software: you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; GNU Emacs is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode-serial.el b/phps-mode-serial.el index 48b2027990..d359694277 100644 --- a/phps-mode-serial.el +++ b/phps-mode-serial.el @@ -1,6 +1,6 @@ ;;; phps-mode-serial.el --- Functions for serial commands with varied synchronicity -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode-syntax-color.el b/phps-mode-syntax-color.el index 295367f04f..60feee7449 100644 --- a/phps-mode-syntax-color.el +++ b/phps-mode-syntax-color.el @@ -1,6 +1,6 @@ ;;; phps-mode-syntax-color.el --- Syntax coloring for major mode -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode-syntax-table.el b/phps-mode-syntax-table.el index ecf7e51dbc..ad2625b5f5 100644 --- a/phps-mode-syntax-table.el +++ b/phps-mode-syntax-table.el @@ -1,6 +1,6 @@ ;;; phps-mode-syntax-table.el --- Syntax table for PHPs -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;; This file is not part of GNU Emacs. diff --git a/phps-mode-test.el b/phps-mode-test.el index 0c469fc5ba..ef62b64e97 100644 --- a/phps-mode-test.el +++ b/phps-mode-test.el @@ -1,21 +1,6 @@ ;;; phps-mode-test.el --- Commons for tests -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. - -;; This file is not part of GNU Emacs. - -;; This program is free software; you can redistribute it and/or -;; modify it under the terms of the GNU General Public License as -;; published by the Free Software Foundation; either version 2, or (at -;; your option) any later version. - -;; This program is distributed in the hope that it will be useful, but -;; WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;; General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/phps-mode.el b/phps-mode.el index 246264fa88..c886631010 100644 --- a/phps-mode.el +++ b/phps-mode.el @@ -1,6 +1,6 @@ ;;; phps-mode.el --- Major mode for PHP with Semantic integration -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;; Author: Christian Johansson <christ...@cvj.se> ;; Maintainer: Christian Johansson <christ...@cvj.se> diff --git a/test/phps-mode-test-ast.el b/test/phps-mode-test-ast.el index b77e5f35a6..02b5e1048e 100644 --- a/test/phps-mode-test-ast.el +++ b/test/phps-mode-test-ast.el @@ -1,21 +1,6 @@ ;;; phps-mode-test-ast.el --- Tests for AST -*- lexical-binding: t -*- -;; Copyright (C) 2017-2021 Free Software Foundation, Inc. - -;; This file is not part of GNU Emacs. - -;; This program is free software; you can redistribute it and/or -;; modify it under the terms of the GNU General Public License as -;; published by the Free Software Foundation; either version 2, or (at -;; your option) any later version. - -;; This program is distributed in the hope that it will be useful, but -;; WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;; General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/test/phps-mode-test-indent.el b/test/phps-mode-test-indent.el index 11964aca5f..cbdbea942e 100644 --- a/test/phps-mode-test-indent.el +++ b/test/phps-mode-test-indent.el @@ -1,6 +1,6 @@ ;;; phps-mode-test-indent.el --- Tests for indentation -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/test/phps-mode-test-integration.el b/test/phps-mode-test-integration.el index 214882ff57..a22f50ec76 100644 --- a/test/phps-mode-test-integration.el +++ b/test/phps-mode-test-integration.el @@ -1,21 +1,6 @@ ;;; phps-mode-test-integration.el --- Tests for integration -*- lexical-binding: t -*- -;; Copyright (C) 2017-2021 Free Software Foundation, Inc. - -;; This file is not part of GNU Emacs. - -;; This program is free software; you can redistribute it and/or -;; modify it under the terms of the GNU General Public License as -;; published by the Free Software Foundation; either version 2, or (at -;; your option) any later version. - -;; This program is distributed in the hope that it will be useful, but -;; WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;; General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/test/phps-mode-test-lex-analyzer.el b/test/phps-mode-test-lex-analyzer.el index 5585f54ec3..63450861c0 100644 --- a/test/phps-mode-test-lex-analyzer.el +++ b/test/phps-mode-test-lex-analyzer.el @@ -1,6 +1,6 @@ ;;; phps-mode-test-lex-analyzer.el --- Tests for lex-analyzer -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/test/phps-mode-test-lexer.el b/test/phps-mode-test-lexer.el index 73227167f1..a403f0cbbb 100644 --- a/test/phps-mode-test-lexer.el +++ b/test/phps-mode-test-lexer.el @@ -1,21 +1,6 @@ ;;; phps-mode-test-lexer.el --- Tests for lexer -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. - -;; This file is not part of GNU Emacs. - -;; This program is free software; you can redistribute it and/or -;; modify it under the terms of the GNU General Public License as -;; published by the Free Software Foundation; either version 2, or (at -;; your option) any later version. - -;; This program is distributed in the hope that it will be useful, but -;; WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;; General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/test/phps-mode-test-parser.el b/test/phps-mode-test-parser.el index 0b0ec893c5..d4bcb74a38 100644 --- a/test/phps-mode-test-parser.el +++ b/test/phps-mode-test-parser.el @@ -1,21 +1,6 @@ ;;; phps-mode-test-parser.el --- Tests for parser -*- lexical-binding: t -*- -;; Copyright (C) 2017-2021 Free Software Foundation, Inc. - -;; This file is not part of GNU Emacs. - -;; This program is free software; you can redistribute it and/or -;; modify it under the terms of the GNU General Public License as -;; published by the Free Software Foundation; either version 2, or (at -;; your option) any later version. - -;; This program is distributed in the hope that it will be useful, but -;; WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;; General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: diff --git a/test/phps-mode-test-syntax-table.el b/test/phps-mode-test-syntax-table.el index 16fb02edb5..65d62066ba 100644 --- a/test/phps-mode-test-syntax-table.el +++ b/test/phps-mode-test-syntax-table.el @@ -1,21 +1,6 @@ ;;; phps-mode-test-syntax-table.el --- Tests for syntax-table -*- lexical-binding: t -*- -;; Copyright (C) 2018-2021 Free Software Foundation, Inc. - -;; This file is not part of GNU Emacs. - -;; This program is free software; you can redistribute it and/or -;; modify it under the terms of the GNU General Public License as -;; published by the Free Software Foundation; either version 2, or (at -;; your option) any later version. - -;; This program is distributed in the hope that it will be useful, but -;; WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;; General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. +;; Copyright (C) 2018-2022 Free Software Foundation, Inc. ;;; Commentary: