diff options
author | F. Jason Park <jp@neverwas.me> | 2023-01-24 02:34:29 -0800 |
---|---|---|
committer | F. Jason Park <jp@neverwas.me> | 2023-01-24 20:15:18 -0800 |
commit | 3846e79c93bc018b28d1d24ad5f1e038e50f39be (patch) | |
tree | c0919c225c18905cbc39c9e090040efa5ff53d28 /test/lisp/erc/erc-scenarios-base-local-modules.el | |
parent | ecf500b5e34f3767df6b41f110efcf307c74ebc9 (diff) | |
download | emacs-3846e79c93bc018b28d1d24ad5f1e038e50f39be.tar.gz emacs-3846e79c93bc018b28d1d24ad5f1e038e50f39be.tar.bz2 emacs-3846e79c93bc018b28d1d24ad5f1e038e50f39be.zip |
; Fix filename mismatches in prop lines of ERC tests
* test/lisp/erc/erc-scenarios-base-compat-rename-bouncer.el: Fix file
name in prop line and footer.
* test/lisp/erc/erc-scenarios-base-local-modules.el: Fix file name in
prop line and footer.
* test/lisp/erc/erc-scenarios-base-netid-samenet.el: Fix file name in
prop line and footer.
* test/lisp/erc/erc-scenarios-base-upstream-recon-soju.el: Fix file
name in prop line and footer.
* test/lisp/erc/erc-scenarios-base-upstream-recon-znc.el: Fix file
name in prop line and footer.
Diffstat (limited to 'test/lisp/erc/erc-scenarios-base-local-modules.el')
-rw-r--r-- | test/lisp/erc/erc-scenarios-base-local-modules.el | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/test/lisp/erc/erc-scenarios-base-local-modules.el b/test/lisp/erc/erc-scenarios-base-local-modules.el index 916d105779a..1318207a3bf 100644 --- a/test/lisp/erc/erc-scenarios-base-local-modules.el +++ b/test/lisp/erc/erc-scenarios-base-local-modules.el @@ -1,4 +1,4 @@ -;;; erc-scenarios-local-modules.el --- Local modules tests for ERC -*- lexical-binding: t -*- +;;; erc-scenarios-base-local-modules.el --- Local-module tests for ERC -*- lexical-binding: t -*- ;; Copyright (C) 2022-2023 Free Software Foundation, Inc. @@ -22,14 +22,15 @@ ;; A local module doubles as a minor mode whose mode variable and ;; associated local data can withstand service disruptions. ;; Unfortunately, the current implementation is too unwieldy to be -;; made public because it doesn't perform any of the boiler plate -;; needed to save and restore buffer-local and "network-local" copies -;; of user options. Ultimately, a user-friendly framework must fill -;; this void if third-party local modules are ever to become +;; promoted publicly because it doesn't perform any of the boiler +;; plate needed to save and restore buffer-local and "network-local" +;; copies of user options. Ultimately, a user-friendly framework must +;; fill this void if third-party local modules are ever to become ;; practical. ;; ;; The following tests all use `sasl' because, as of ERC 5.5, it's the -;; only local module. +;; only connection-oriented local module. A fictitious +;; target-oriented module is defined below for testing purposes. ;;; Code: @@ -325,4 +326,4 @@ (funcall expect 10 "User modes for tester") (should (eql erc-scenarios-base-local-modules--local-var 1)))))) -;;; erc-scenarios-local-modules.el ends here +;;; erc-scenarios-base-local-modules.el ends here |