branch: externals/auctex-cont-latexmk
commit 7e2cbfbc8872b650d88648fc323f61728328d507
Author: Paul Nelson <ultr...@gmail.com>
Commit: Paul Nelson <ultr...@gmail.com>

    fix defcustom groups
---
 czm-tex-compile.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/czm-tex-compile.el b/czm-tex-compile.el
index 1527c5e6d8..e752fc70a1 100644
--- a/czm-tex-compile.el
+++ b/czm-tex-compile.el
@@ -47,7 +47,8 @@
 (defcustom czm-tex-compile-command
   "latexmk -shell-escape -pvc -pdf -view=none -e '$pdflatex=q/pdflatex %O 
-synctex=1 -interaction=nonstopmode %S/'"
   "Command to compile LaTeX documents."
-  :type 'string)
+  :type 'string
+  :group 'czm-tex-compile)
 
 (defvar-local czm-tex-compile--process nil
   "Process running the LaTeX compilation.")
@@ -139,12 +140,12 @@ Also kill the timer for watching the log file."
 (defcustom czm-tex-compile-report-hbox-errors nil
   "Non-nil means report hbox errors via flymake."
   :type 'boolean
-  :group 'czm-tex)
+  :group 'czm-tex-compile)
 
 (defcustom czm-tex-compile-report-multiple-labels t
   "Non-nil means report multiple label errors via flymake."
   :type 'boolean
-  :group 'czm-tex)
+  :group 'czm-tex-compile)
 
 
 (defun czm-tex-compile--parse-log-buffer (log-file)

Reply via email to