; Fix thinko in my last change
authorStefan Kangas <stefankangas@gmail.com>
Mon, 27 May 2024 20:38:28 +0000 (22:38 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Mon, 27 May 2024 20:39:03 +0000 (22:39 +0200)
* lisp/progmodes/which-func.el (which-func-update-delay): Fix
thinko.

lisp/progmodes/which-func.el

index 870db91166ac4094dd60f26482286c520e04a86c..28aacd335baab4a1263cb235e205a3df4b7d13c1 100644 (file)
@@ -111,7 +111,7 @@ activation of Which Function until Imenu is used for the first time."
   ;; Backwards-compatibility: if users had changed this before
   ;; `idle-update-delay' was declared obsolete, let's respect that.
   (with-suppressed-warnings ((obsolete idle-update-delay))
-    (if (/= idle-update-delay 0.5) idle-update-delay 0.5))
+    idle-update-delay) ; 0.5
   "Idle time delay before `which-function-mode` updates its display.
 When point moves, wait this many seconds after Emacs becomes idle before
 doing an update."