# HG changeset patch # User Chong Yidong # Date 1222380631 0 # Node ID 393e8f885464d249e060e237d8acfdaac0c6dd20 # Parent d4a0e165886a4505ba8a08e2bc85b8dc58e58a4d (octave-mode-menu): Fix incorrect quoting. diff -r d4a0e165886a -r 393e8f885464 lisp/progmodes/octave-mod.el --- a/lisp/progmodes/octave-mod.el Thu Sep 25 22:10:18 2008 +0000 +++ b/lisp/progmodes/octave-mod.el Thu Sep 25 22:10:31 2008 +0000 @@ -238,27 +238,27 @@ (defvar octave-mode-menu '("Octave" - '("Lines" + ("Lines" ["Previous Code Line" octave-previous-code-line t] ["Next Code Line" octave-next-code-line t] ["Begin of Continuation" octave-beginning-of-line t] ["End of Continuation" octave-end-of-line t] ["Split Line at Point" octave-indent-new-comment-line t]) - '("Blocks" + ("Blocks" ["Next Block" octave-forward-block t] ["Previous Block" octave-backward-block t] ["Down Block" octave-down-block t] ["Up Block" octave-backward-up-block t] ["Mark Block" octave-mark-block t] ["Close Block" octave-close-block t]) - '("Functions" + ("Functions" ["Begin of Function" octave-beginning-of-defun t] ["End of Function" octave-end-of-defun t] ["Mark Function" octave-mark-defun t] ["Indent Function" octave-indent-defun t] ["Insert Function" octave-insert-defun t]) "-" - '("Debug" + ("Debug" ["Send Current Line" octave-send-line t] ["Send Current Block" octave-send-block t] ["Send Current Function" octave-send-defun t]