diff options
| author | Stefan Monnier | 2000-06-12 05:10:52 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-06-12 05:10:52 +0000 |
| commit | eade2e80a7187b770d3e95a1ed4a074008b37cd8 (patch) | |
| tree | 66bdb99b9f03d9f65b450508a0818b733d426c93 | |
| parent | 811ec3a8df8a14b490f4309f566c2b4ce93b955f (diff) | |
| download | emacs-eade2e80a7187b770d3e95a1ed4a074008b37cd8.tar.gz emacs-eade2e80a7187b770d3e95a1ed4a074008b37cd8.zip | |
(backward-word, forward-word, setq): Don't quote lambda.
| -rw-r--r-- | lisp/emulation/mlconvert.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emulation/mlconvert.el b/lisp/emulation/mlconvert.el index 3ded26469ff..5b56358d3a3 100644 --- a/lisp/emulation/mlconvert.el +++ b/lisp/emulation/mlconvert.el | |||
| @@ -107,11 +107,11 @@ | |||
| 107 | 107 | ||
| 108 | (ml-expansion 'defun "ml-defun") | 108 | (ml-expansion 'defun "ml-defun") |
| 109 | (ml-expansion 'if "ml-if") | 109 | (ml-expansion 'if "ml-if") |
| 110 | (ml-expansion 'setq '(lambda () | 110 | (ml-expansion 'setq (lambda () |
| 111 | (if (looking-at "setq[ \t\n]+buffer-modified-p") | 111 | (if (looking-at "setq[ \t\n]+buffer-modified-p") |
| 112 | (replace-match "set-buffer-modified-p")))) | 112 | (replace-match "set-buffer-modified-p")))) |
| 113 | 113 | ||
| 114 | ;;(ml-expansion 'while '(lambda () | 114 | ;;(ml-expansion 'while (lambda () |
| 115 | ;; (let ((end (progn (forward-sexp 2) (point-marker))) | 115 | ;; (let ((end (progn (forward-sexp 2) (point-marker))) |
| 116 | ;; (start (progn (forward-sexp -1) (point)))) | 116 | ;; (start (progn (forward-sexp -1) (point)))) |
| 117 | ;; (let ((cond (buffer-substring start end))) | 117 | ;; (let ((cond (buffer-substring start end))) |
| @@ -167,10 +167,10 @@ | |||
| 167 | (ml-expansion 'delete-white-space "delete-horizontal-space") | 167 | (ml-expansion 'delete-white-space "delete-horizontal-space") |
| 168 | (ml-expansion 'widen-region "widen") | 168 | (ml-expansion 'widen-region "widen") |
| 169 | 169 | ||
| 170 | (ml-expansion 'forward-word '(lambda () | 170 | (ml-expansion 'forward-word (lambda () |
| 171 | (if (looking-at "forward-word[ \t\n]*)") | 171 | (if (looking-at "forward-word[ \t\n]*)") |
| 172 | (replace-match "forward-word 1)")))) | 172 | (replace-match "forward-word 1)")))) |
| 173 | (ml-expansion 'backward-word '(lambda () | 173 | (ml-expansion 'backward-word (lambda () |
| 174 | (if (looking-at "backward-word[ \t\n]*)") | 174 | (if (looking-at "backward-word[ \t\n]*)") |
| 175 | (replace-match "backward-word 1)")))) | 175 | (replace-match "backward-word 1)")))) |
| 176 | 176 | ||