From 6d57ac0284f6854a6b56a34c13b114d6c4b4ec78 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 8 Mar 2026 10:14:50 -0400 Subject: [PATCH] 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? --- mode-hooks/octave-mode-hooks.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- 2.51.0