diff options
| author | Glenn Morris <rgm@gnu.org> | 2009-01-09 04:23:38 +0000 |
|---|---|---|
| committer | Glenn Morris <rgm@gnu.org> | 2009-01-09 04:23:38 +0000 |
| commit | 1ba983e8d9da561ccbdf15fb1544895fad40cce8 (patch) | |
| tree | 88210d37a85f0ef4a8d3341074b185c9d0187dad /lisp/progmodes/verilog-mode.el | |
| parent | e93c003eb15f85f744a39c28a8fb43b8c6da9904 (diff) | |
| download | emacs-1ba983e8d9da561ccbdf15fb1544895fad40cce8.tar.gz | |
Replace last-command-char with last-command-event.
Diffstat (limited to 'lisp/progmodes/verilog-mode.el')
| -rw-r--r-- | lisp/progmodes/verilog-mode.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el index 37aa224f151..8670d66864f 100644 --- a/lisp/progmodes/verilog-mode.el +++ b/lisp/progmodes/verilog-mode.el @@ -2661,7 +2661,7 @@ With optional ARG, remove existing end of line comments." (defun electric-verilog-semi () "Insert `;' character and reindent the line." (interactive) - (insert last-command-char) + (insert last-command-event) (if (or (verilog-in-comment-or-string-p) (verilog-in-escaped-name-p)) @@ -2686,7 +2686,7 @@ With optional ARG, remove existing end of line comments." (defun electric-verilog-colon () "Insert `:' and do all indentations except line indent on this line." (interactive) - (insert last-command-char) + (insert last-command-event) ;; Do nothing if within string. (if (or (verilog-within-string) @@ -2705,7 +2705,7 @@ With optional ARG, remove existing end of line comments." ;;(defun electric-verilog-equal () ;; "Insert `=', and do indentation if within block." ;; (interactive) -;; (insert last-command-char) +;; (insert last-command-event) ;; Could auto line up expressions, but not yet ;; (if (eq (car (verilog-calculate-indent)) 'block) ;; (let ((verilog-tab-always-indent nil)) @@ -2715,7 +2715,7 @@ With optional ARG, remove existing end of line comments." (defun electric-verilog-tick () "Insert back-tick, and indent to column 0 if this is a CPP directive." (interactive) - (insert last-command-char) + (insert last-command-event) (save-excursion (if (progn (beginning-of-line) |
