]> gitweb.michael.orlitzky.com - emacs.d.git/commitdiff
mode-hooks/octave-mode-hooks.el: setq -> custom-set-variables
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 8 Mar 2026 14:14:50 +0000 (10:14 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 8 Mar 2026 14:14:50 +0000 (10:14 -0400)
I haven't opened an Octave file in a long time. I guess the
declaration of this variable changed?

mode-hooks/octave-mode-hooks.el

index 84e89d9fd0c6da695d8ffa11820b8f6da8292598..5d6ea45679dde2987b3f2c95b03ef00bc872d705 100644 (file)
@@ -1,5 +1,5 @@
 (defun octm-hook()
-  (setq 'octave-continuation-offset 2)
-  )
+  (custom-set-variables '(octave-continuation-offset 2))
+)
 
 (add-hook 'octave-mode-hook (function octm-hook))