aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/erc
diff options
context:
space:
mode:
authorF. Jason Park2024-04-25 05:09:50 -0700
committerF. Jason Park2024-05-02 19:21:48 -0700
commit068e44ed754344667cf42fe252ebb601d7a8db93 (patch)
tree2766bab669944e4fa20533c2f96f3b9024f9fb2c /lisp/erc
parenta156c98df0f24da365872678e20e84e1157d1225 (diff)
downloademacs-068e44ed754344667cf42fe252ebb601d7a8db93.tar.gz
emacs-068e44ed754344667cf42fe252ebb601d7a8db93.zip
; Set explicit hook depth for erc-once-with-server-event
* lisp/erc/erc.el (erc-once-with-server-event): Set hook depth to -95. * test/lisp/erc/erc-scenarios-base-association-nick.el: Improve comment. * test/lisp/erc/resources/erc-d/erc-d-tests.el (erc-d--render-entries): Remove do-nothing assertion since its purpose was unclear and likely dubious, as was incidentally highlighted by the addition of a function not present on older Emacsen, which this test still needs to run on.
Diffstat (limited to 'lisp/erc')
-rw-r--r--lisp/erc/erc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index 053d44d5362..e37b28669a4 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -1595,7 +1595,7 @@ capabilities."
1595 (remove-hook hook fun t)) 1595 (remove-hook hook fun t))
1596 (fmakunbound fun) 1596 (fmakunbound fun)
1597 (funcall f proc parsed))) 1597 (funcall f proc parsed)))
1598 (add-hook hook fun nil t) 1598 (add-hook hook fun -95 t)
1599 fun)) 1599 fun))
1600 1600
1601(defun erc--warn-once-before-connect (mode-var &rest args) 1601(defun erc--warn-once-before-connect (mode-var &rest args)