From: Michael Orlitzky Date: Sun, 8 Mar 2026 14:14:50 +0000 (-0400) Subject: mode-hooks/octave-mode-hooks.el: setq -> custom-set-variables X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=6d57ac0284f6854a6b56a34c13b114d6c4b4ec78;p=emacs.d.git mode-hooks/octave-mode-hooks.el: setq -> custom-set-variables I haven't opened an Octave file in a long time. I guess the declaration of this variable changed? --- diff --git a/mode-hooks/octave-mode-hooks.el b/mode-hooks/octave-mode-hooks.el index 84e89d9..5d6ea45 100644 --- a/mode-hooks/octave-mode-hooks.el +++ b/mode-hooks/octave-mode-hooks.el @@ -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))