branch: externals/auctex-cont-latexmk commit febe27553319bff4dbe60afc67f68cfda99a7c54 Author: Paul Nelson <ultr...@gmail.com> Commit: Paul Nelson <ultr...@gmail.com>
Add autoloads --- czm-tex-compile.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/czm-tex-compile.el b/czm-tex-compile.el index 673cad2199..d8d73034e4 100644 --- a/czm-tex-compile.el +++ b/czm-tex-compile.el @@ -3,6 +3,9 @@ ;; Copyright (C) 2023 Paul D. Nelson ;; Author: Paul D. Nelson <nelson.paul.da...@gmail.com> +;; Version: 0.1 +;; URL: https://github.com/ultronozm/czm-tex-compile.el +;; Package-Requires: ((emacs "29.1") (auctex "11.86.1")) ;; Keywords: tex ;; This program is free software; you can redistribute it and/or modify @@ -24,7 +27,7 @@ ;;; Code: - +;;;###autoload (defun czm-latexmk-this () (interactive) (if (string-match "\\([^\.]+\\)\.tex" (buffer-name)) @@ -151,11 +154,13 @@ DIRECTION should be either 'next or 'previous." (goto-line line))) (message (or description "No further errors or warnings.")))) +;;;###autoload (defun czm/latex-previous-log-error () "Move point to the previous LaTeX-warning line." (interactive) (czm/latex-navigate-log-error 'previous)) +;;;###autoload (defun czm/latex-next-log-error () "Move point to the next LaTeX-warning line." (interactive)