diff options
Diffstat (limited to 'test/lisp/progmodes')
-rw-r--r-- | test/lisp/progmodes/bat-mode-tests.el | 2 | ||||
-rw-r--r-- | test/lisp/progmodes/cc-mode-tests.el | 2 | ||||
-rw-r--r-- | test/lisp/progmodes/compile-tests.el | 2 | ||||
-rw-r--r-- | test/lisp/progmodes/elisp-mode-tests.el | 2 | ||||
-rw-r--r-- | test/lisp/progmodes/etags-tests.el | 2 | ||||
-rw-r--r-- | test/lisp/progmodes/f90-tests.el | 32 | ||||
-rw-r--r-- | test/lisp/progmodes/flymake-tests.el | 4 | ||||
-rw-r--r-- | test/lisp/progmodes/js-tests.el | 2 | ||||
-rw-r--r-- | test/lisp/progmodes/python-tests.el | 2 | ||||
-rw-r--r-- | test/lisp/progmodes/ruby-mode-tests.el | 2 | ||||
-rw-r--r-- | test/lisp/progmodes/sql-tests.el | 2 | ||||
-rw-r--r-- | test/lisp/progmodes/subword-tests.el | 8 | ||||
-rw-r--r-- | test/lisp/progmodes/xref-tests.el | 2 |
13 files changed, 32 insertions, 32 deletions
diff --git a/test/lisp/progmodes/bat-mode-tests.el b/test/lisp/progmodes/bat-mode-tests.el index 565718eea41..71660ca437a 100644 --- a/test/lisp/progmodes/bat-mode-tests.el +++ b/test/lisp/progmodes/bat-mode-tests.el @@ -18,7 +18,7 @@ ;; 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/>. +;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/test/lisp/progmodes/cc-mode-tests.el b/test/lisp/progmodes/cc-mode-tests.el index 10f424f5282..402bf47dfab 100644 --- a/test/lisp/progmodes/cc-mode-tests.el +++ b/test/lisp/progmodes/cc-mode-tests.el @@ -19,7 +19,7 @@ ;; 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/>. +;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/test/lisp/progmodes/compile-tests.el b/test/lisp/progmodes/compile-tests.el index 5c8c9c2a81f..2de52daeea2 100644 --- a/test/lisp/progmodes/compile-tests.el +++ b/test/lisp/progmodes/compile-tests.el @@ -19,7 +19,7 @@ ;; 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/>. +;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/test/lisp/progmodes/elisp-mode-tests.el b/test/lisp/progmodes/elisp-mode-tests.el index 675aa31a79f..a6c64edeb7f 100644 --- a/test/lisp/progmodes/elisp-mode-tests.el +++ b/test/lisp/progmodes/elisp-mode-tests.el @@ -18,7 +18,7 @@ ;; 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/>. +;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Code: diff --git a/test/lisp/progmodes/etags-tests.el b/test/lisp/progmodes/etags-tests.el index 845f3fe76a8..f8393317611 100644 --- a/test/lisp/progmodes/etags-tests.el +++ b/test/lisp/progmodes/etags-tests.el @@ -17,7 +17,7 @@ ;; 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/>. +;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Code: diff --git a/test/lisp/progmodes/f90-tests.el b/test/lisp/progmodes/f90-tests.el index 533a67149e7..0c03a190ca2 100644 --- a/test/lisp/progmodes/f90-tests.el +++ b/test/lisp/progmodes/f90-tests.el @@ -17,7 +17,7 @@ ;; 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/>. +;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Commentary: @@ -71,7 +71,7 @@ end program progname (should (string-equal (buffer-string) f90-test-indent)))) (ert-deftest f90-test-bug3729 () - "Test for http://debbugs.gnu.org/3729 ." + "Test for https://debbugs.gnu.org/3729 ." :expected-result :failed (with-temp-buffer (f90-mode) @@ -90,7 +90,7 @@ end subroutine test") (should (= 0 (current-indentation))))) (ert-deftest f90-test-bug3730 () - "Test for http://debbugs.gnu.org/3730 ." + "Test for https://debbugs.gnu.org/3730 ." (with-temp-buffer (f90-mode) (insert "a" ) @@ -104,7 +104,7 @@ end subroutine test") ;; TODO bug#5593 (ert-deftest f90-test-bug8691 () - "Test for http://debbugs.gnu.org/8691 ." + "Test for https://debbugs.gnu.org/8691 ." (with-temp-buffer (f90-mode) (insert "module modname @@ -119,13 +119,13 @@ end module modname") ;; TODO bug#8812 (ert-deftest f90-test-bug8820 () - "Test for http://debbugs.gnu.org/8820 ." + "Test for https://debbugs.gnu.org/8820 ." (with-temp-buffer (f90-mode) (should (eq (char-syntax ?%) (string-to-char "."))))) (ert-deftest f90-test-bug9553a () - "Test for http://debbugs.gnu.org/9553 ." + "Test for https://debbugs.gnu.org/9553 ." (with-temp-buffer (f90-mode) (insert "!!!") @@ -136,7 +136,7 @@ end module modname") (should (equal "!!! a" (buffer-substring (point) (+ 5 (point))))))) (ert-deftest f90-test-bug9553b () - "Test for http://debbugs.gnu.org/9553 ." + "Test for https://debbugs.gnu.org/9553 ." (with-temp-buffer (f90-mode) (insert "!!!") @@ -147,7 +147,7 @@ end module modname") (should (equal "!!! a" (buffer-substring (point) (+ 5 (point))))))) (ert-deftest f90-test-bug9690 () - "Test for http://debbugs.gnu.org/9690 ." + "Test for https://debbugs.gnu.org/9690 ." (with-temp-buffer (f90-mode) (insert "#include \"foo.h\"") @@ -155,7 +155,7 @@ end module modname") (should (= 0 (current-indentation))))) (ert-deftest f90-test-bug13138 () - "Test for http://debbugs.gnu.org/13138 ." + "Test for https://debbugs.gnu.org/13138 ." (with-temp-buffer (f90-mode) (insert "program prog @@ -174,7 +174,7 @@ end program prog") (should (= 0 (current-indentation))))) (ert-deftest f90-test-bug-19809 () - "Test for http://debbugs.gnu.org/19809 ." + "Test for https://debbugs.gnu.org/19809 ." (with-temp-buffer (f90-mode) ;; The Fortran standard says that continued strings should have @@ -189,7 +189,7 @@ end program prog") (should (= (point) (point-max))))) (ert-deftest f90-test-bug20680 () - "Test for http://debbugs.gnu.org/20680 ." + "Test for https://debbugs.gnu.org/20680 ." (with-temp-buffer (f90-mode) (insert "module modname @@ -202,7 +202,7 @@ end module modname") (should (= 2 (current-indentation))))) (ert-deftest f90-test-bug20680b () - "Test for http://debbugs.gnu.org/20680 ." + "Test for https://debbugs.gnu.org/20680 ." (with-temp-buffer (f90-mode) (insert "module modname @@ -215,7 +215,7 @@ end module modname") (should (= 2 (current-indentation))))) (ert-deftest f90-test-bug20969 () - "Test for http://debbugs.gnu.org/20969 ." + "Test for https://debbugs.gnu.org/20969 ." (with-temp-buffer (f90-mode) (insert "module modname @@ -228,7 +228,7 @@ end module modname") (should (= 2 (current-indentation))))) (ert-deftest f90-test-bug20969b () - "Test for http://debbugs.gnu.org/20969 ." + "Test for https://debbugs.gnu.org/20969 ." (with-temp-buffer (f90-mode) (insert "module modname @@ -241,7 +241,7 @@ end module modname") (should (= 2 (current-indentation))))) (ert-deftest f90-test-bug21794 () - "Test for http://debbugs.gnu.org/21794 ." + "Test for https://debbugs.gnu.org/21794 ." (with-temp-buffer (f90-mode) (insert "program prog @@ -256,7 +256,7 @@ end program prog") (should (= 5 (current-indentation))))) (ert-deftest f90-test-bug25039 () - "Test for http://debbugs.gnu.org/25039 ." + "Test for https://debbugs.gnu.org/25039 ." (with-temp-buffer (f90-mode) (insert "program prog diff --git a/test/lisp/progmodes/flymake-tests.el b/test/lisp/progmodes/flymake-tests.el index 9bf6e7aa178..b04346fd97c 100644 --- a/test/lisp/progmodes/flymake-tests.el +++ b/test/lisp/progmodes/flymake-tests.el @@ -17,7 +17,7 @@ ;; 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/>. +;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Commentary: @@ -41,7 +41,7 @@ (setq-local flymake-warning-predicate predicate) (goto-char (point-min)) (flymake-mode 1) - ;; Weirdness here... http://debbugs.gnu.org/17647#25 + ;; Weirdness here... https://debbugs.gnu.org/17647#25 (while (and flymake-is-running (< (setq i (1+ i)) 10)) (sleep-for (+ 0.5 flymake-no-changes-timeout))) (flymake-goto-next-error) diff --git a/test/lisp/progmodes/js-tests.el b/test/lisp/progmodes/js-tests.el index 4e27913930b..35143b1ec79 100644 --- a/test/lisp/progmodes/js-tests.el +++ b/test/lisp/progmodes/js-tests.el @@ -15,7 +15,7 @@ ;; 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/>. +;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/test/lisp/progmodes/python-tests.el b/test/lisp/progmodes/python-tests.el index 57e40ff640e..a59885637e9 100644 --- a/test/lisp/progmodes/python-tests.el +++ b/test/lisp/progmodes/python-tests.el @@ -15,7 +15,7 @@ ;; 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/>. +;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/test/lisp/progmodes/ruby-mode-tests.el b/test/lisp/progmodes/ruby-mode-tests.el index f04483f6d7c..aa177e31b46 100644 --- a/test/lisp/progmodes/ruby-mode-tests.el +++ b/test/lisp/progmodes/ruby-mode-tests.el @@ -15,7 +15,7 @@ ;; 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/>. +;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/test/lisp/progmodes/sql-tests.el b/test/lisp/progmodes/sql-tests.el index f75005f737f..ad22906ecf1 100644 --- a/test/lisp/progmodes/sql-tests.el +++ b/test/lisp/progmodes/sql-tests.el @@ -18,7 +18,7 @@ ;; 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/>. +;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/test/lisp/progmodes/subword-tests.el b/test/lisp/progmodes/subword-tests.el index 39512efdbe1..66fe1472e4c 100644 --- a/test/lisp/progmodes/subword-tests.el +++ b/test/lisp/progmodes/subword-tests.el @@ -16,7 +16,7 @@ ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see <http://www.gnu.org/licenses/>. +;; along with this program. If not, see <https://www.gnu.org/licenses/>. ;;; Commentary: @@ -58,12 +58,12 @@ (insert line) ;; Test forward motion. - + (goto-char (point-min)) (let ((stops (make-string (length fwrd) ?\ ))) (while (progn (aset stops (1- (point)) ?\*) - (not (eobp))) + (not (eobp))) (forward-word)) (should (equal stops fwrd))) @@ -73,7 +73,7 @@ (let ((stops (make-string (length bkwd) ?\ ))) (while (progn (aset stops (1- (point)) ?\*) - (not (bobp))) + (not (bobp))) (backward-word)) (should (equal stops bkwd)))))) diff --git a/test/lisp/progmodes/xref-tests.el b/test/lisp/progmodes/xref-tests.el index b7f0f0526c6..465aab51128 100644 --- a/test/lisp/progmodes/xref-tests.el +++ b/test/lisp/progmodes/xref-tests.el @@ -17,7 +17,7 @@ ;; 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/>. +;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. ;;; Commentary: |