;;; 単にメッセージを表示するだけのシンプルなメニュー (defun mag-menu-test () (interactive) (mag-menu '(test (actions ("c" "Commit" mag-menu-test-commit) ("l" "Log" mag-menu-test-log))))) (defun mag-menu-test-commit (options) (message "Commit")) (defun mag-menu-test-log (options) (message "Log"))