branch: elpa commit 0c955d5d9c39daa8273c18aae47bc959ab4910b4 Author: Tassilo Horn <t...@gnu.org> Commit: Tassilo Horn <t...@gnu.org>
Fix TeX--if-macro-fboundp edebug spec * tex.el (TeX--if-macro-fboundp): Fix broken edebug spec. --- tex.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tex.el b/tex.el index 910e98a..1836f66 100644 --- a/tex.el +++ b/tex.el @@ -632,7 +632,7 @@ is equivalent to but takes care of byte-compilation issues where the byte-code for the latter could signal an error if it has been compiled with emacs 24.1 and is then later run by emacs 24.5." - (declare (indent 2) (debug (symbolp form))) + (declare (indent 2) (debug (symbolp form &rest form))) (if (fboundp name) ;If macro exists at compile-time, just use it. then `(if (fboundp ',name) ;Else, check if it exists at run-time.