1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

Revert last change for now.

This commit is contained in:
Andreas Schwab 2008-02-22 15:10:13 +00:00
parent 12cf1a12ab
commit d007adda89
2 changed files with 8 additions and 12 deletions

View File

@ -4,11 +4,6 @@
Add SRFI 11 support.
(let-values, let*-values): Specify scheme-indent-function.
2008-02-22 Andreas Schwab <schwab@suse.de>
* progmodes/verilog-mode.el (verilog-xemacs-menu): Fix setup of
"Move" submenu.
2008-02-22 Dan Nicolaescu <dann@ics.uci.edu>
* vc.el (vc-exec-after): Move setting mode-line-process in the

View File

@ -992,13 +992,14 @@ If set will become buffer local.")
:selected (equal verilog-tool `verilog-compiler)]
)
("Move"
,@(if (featurep 'xemacs)
'(["Beginning of function" verilog-beg-of-defun t]
["End of function" verilog-end-of-defun t]
["Mark function" verilog-mark-defun t])
'(["Beginning of function" beginning-of-defun t]
["End of function" end-of-defun t]
["Mark function" mark-defun t]))
,(if (featurep 'xemacs)
(progn
["Beginning of function" verilog-beg-of-defun t]
["End of function" verilog-end-of-defun t]
["Mark function" verilog-mark-defun t])
["Beginning of function" beginning-of-defun t]
["End of function" end-of-defun t]
["Mark function" mark-defun t])
["Goto function/module" verilog-goto-defun t]
["Move to beginning of block" electric-verilog-backward-sexp t]