diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-03-24 11:39:13 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-03-24 11:39:13 +0100 |
commit | b97aa560ab225bb37cc00c385711825199687fdb (patch) | |
tree | e60d81e5554db061b956e4adaf54c373a2fc262f | |
parent | 410675ce0e926dbf5a9f92a0d3de7eb2741daca7 (diff) | |
download | emacs-b97aa560ab225bb37cc00c385711825199687fdb.tar.gz |
Fix autoinsert.el byte compilation warning
* lisp/autoinsert.el (sgml-tag): Fix a byte compilation warning.
-rw-r--r-- | lisp/autoinsert.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index 879dc630c6b..d25275e3ec4 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el @@ -89,6 +89,7 @@ If this contains a %s, that will be replaced by the matching rule." :type 'string :version "28.1") +(declare-function sgml-tag "sgml-mode" (&optional str arg)) (defcustom auto-insert-alist `((("\\.\\([Hh]\\|hh\\|hpp\\|hxx\\|h\\+\\+\\)\\'" . "C / C++ header") |