diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-09-23 13:35:55 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-10-02 13:29:45 +0200 |
commit | 78eacf31e8fe182801ad1943fac717b75fcf286b (patch) | |
tree | 38da2670157302d3663dbee6f1a708dea50a925b /test | |
parent | d5d12707d639261a10726fcca992ba9e538be671 (diff) | |
download | emacs-78eacf31e8fe182801ad1943fac717b75fcf286b.tar.gz |
; Fix many typos in symbols in docs and comments
Diffstat (limited to 'test')
-rw-r--r-- | test/lisp/electric-tests.el | 3 | ||||
-rw-r--r-- | test/lisp/emacs-lisp/backtrace-tests.el | 2 | ||||
-rw-r--r-- | test/lisp/emacs-lisp/edebug-tests.el | 2 | ||||
-rw-r--r-- | test/lisp/files-tests.el | 4 | ||||
-rw-r--r-- | test/lisp/mail/uudecode-tests.el | 4 | ||||
-rw-r--r-- | test/src/coding-tests.el | 2 |
6 files changed, 9 insertions, 8 deletions
diff --git a/test/lisp/electric-tests.el b/test/lisp/electric-tests.el index 56d1bdb110e..69e5de32bfb 100644 --- a/test/lisp/electric-tests.el +++ b/test/lisp/electric-tests.el @@ -867,7 +867,8 @@ baz\"\"" (should (equal (buffer-string) "int main () {\n \n}")))) (ert-deftest electric-layout-control-reindentation () - "Same as `e-l-int-main-kernel-style', but checking Bug#35254." + "Same as `emacs-lisp-int-main-kernel-style', but checking +Bug#35254." (ert-with-test-buffer () (plainer-c-mode) (electric-layout-local-mode 1) diff --git a/test/lisp/emacs-lisp/backtrace-tests.el b/test/lisp/emacs-lisp/backtrace-tests.el index 12164b46ec3..fbc71e0ec86 100644 --- a/test/lisp/emacs-lisp/backtrace-tests.el +++ b/test/lisp/emacs-lisp/backtrace-tests.el @@ -41,7 +41,7 @@ (backtrace-mode) (setq backtrace-frames (backtrace-get-frames)) (let ((this-index)) - ;; Discard all past `backtrace-tests-make-backtrace'. + ;; Discard all past `backtrace-tests--make-backtrace'. (dotimes (index (length backtrace-frames)) (when (eq (backtrace-frame-fun (nth index backtrace-frames)) 'backtrace-tests--make-backtrace) diff --git a/test/lisp/emacs-lisp/edebug-tests.el b/test/lisp/emacs-lisp/edebug-tests.el index 41811c9dc07..88c4a0fe175 100644 --- a/test/lisp/emacs-lisp/edebug-tests.el +++ b/test/lisp/emacs-lisp/edebug-tests.el @@ -210,7 +210,7 @@ All other elements will be nil." (defvar edebug-tests-thunks nil "List containing thunks to run after each command in a keyboard macro.") (defvar edebug-tests-kbd-macro-index nil - "Index into `edebug-tests-run-unpacked-kbd-macro's current keyboard macro.") + "Index into `edebug-tests-run-kbd-macro's current keyboard macro.") (defun edebug-tests-run-macro (kbdmac &rest thunks) "Run a keyboard macro and execute a thunk after each command in it. diff --git a/test/lisp/files-tests.el b/test/lisp/files-tests.el index ac56a7732f2..11e1f4db794 100644 --- a/test/lisp/files-tests.el +++ b/test/lisp/files-tests.el @@ -960,7 +960,7 @@ unquoted file names." (let ((linkname (expand-file-name "link" nospecial-dir))) (should-error (make-symbolic-link tmpfile linkname)))))))) -;; See `files-tests--file-name-non-special--subprocess'. +;; See `files-tests-file-name-non-special--subprocess'. ;; (ert-deftest files-tests-file-name-non-special-process-file ()) (ert-deftest files-tests-file-name-non-special-rename-file () @@ -1104,7 +1104,7 @@ unquoted file names." (files-tests--with-temp-non-special-and-file-name-handler (tmpfile nospecial) (should (equal (vc-registered nospecial) (vc-registered tmpfile))))) -;; See test `files-tests--file-name-non-special--buffers'. +;; See test `files-tests-file-name-non-special--buffers'. ;; (ert-deftest files-tests-file-name-non-special-verify-visited-file-modtime ()) (ert-deftest files-tests-file-name-non-special-write-region () diff --git a/test/lisp/mail/uudecode-tests.el b/test/lisp/mail/uudecode-tests.el index 61c20075633..4c9650f556c 100644 --- a/test/lisp/mail/uudecode-tests.el +++ b/test/lisp/mail/uudecode-tests.el @@ -43,12 +43,12 @@ (uudecode-tests-read-file (expand-file-name "uuencoded.txt" uudecode-tests-data-dir)) "Uuencoded data for bookmark-tests.el -Same as `bookmark-tests-decoded-str' but uuencoded.") +Same as `uudecode-tests-decoded-str' but uuencoded.") (defvar uudecode-tests-decoded-str (uudecode-tests-read-file (expand-file-name "uudecoded.txt" uudecode-tests-data-dir)) "Plain text data for bookmark-tests.el -Same as `bookmark-tests-encoded-str' but plain text.") +Same as `uudecode-tests-encoded-str' but plain text.") (ert-deftest uudecode-tests-decode-region-internal () ;; Write to buffer diff --git a/test/src/coding-tests.el b/test/src/coding-tests.el index 094a1fad8fa..899025b4c91 100644 --- a/test/src/coding-tests.el +++ b/test/src/coding-tests.el @@ -143,7 +143,7 @@ ;; Optional 5th arg TRANSLATOR is a function to translate the original ;; file contents to match with the expected result of decoding. For ;; instance, when a file of dos eol-type is read by unix eol-type, -;; `decode-test-lf-to-crlf' must be specified. +;; `coding-tests-lf-to-crlf' must be specified. (defun coding-tests (content-type write-coding read-coding detected-coding &optional translator) |