diff options
| author | Jim Blandy | 1991-07-19 20:39:25 +0000 |
|---|---|---|
| committer | Jim Blandy | 1991-07-19 20:39:25 +0000 |
| commit | fcb764df08fdcc0793c4a5e9e038452183721cbe (patch) | |
| tree | 7a368b5c97bc46d72cefde82f7662cae3ed936ed | |
| parent | 2e146aa4c35f809e8e8dfc18dfd270c2660535b4 (diff) | |
| download | emacs-fcb764df08fdcc0793c4a5e9e038452183721cbe.tar.gz emacs-fcb764df08fdcc0793c4a5e9e038452183721cbe.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/emacs-lisp/backquote.el | 2 | ||||
| -rw-r--r-- | src/term.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el index 3b9a071d378..82cd99a114a 100644 --- a/lisp/emacs-lisp/backquote.el +++ b/lisp/emacs-lisp/backquote.el | |||
| @@ -151,7 +151,7 @@ See backquote.el for details" | |||
| 151 | (mapcar 'bq-iterative-list-builder (reverse form)) | 151 | (mapcar 'bq-iterative-list-builder (reverse form)) |
| 152 | (and state | 152 | (and state |
| 153 | (cond ((eq state 'quote) | 153 | (cond ((eq state 'quote) |
| 154 | (list state tailmaker)) | 154 | (list state (if (equal form tailmaker) form tailmaker))) |
| 155 | ((= (length tailmaker) 1) | 155 | ((= (length tailmaker) 1) |
| 156 | (funcall (bq-cadr (assq state bq-singles)) tailmaker)) | 156 | (funcall (bq-cadr (assq state bq-singles)) tailmaker)) |
| 157 | (t (cons state tailmaker)))))) | 157 | (t (cons state tailmaker)))))) |
diff --git a/src/term.c b/src/term.c index 7e1db17b0e1..85e6bdc39e2 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -120,7 +120,7 @@ int (*mouse_tracking_enable_hook) ( /* int ENABLE */ ); | |||
| 120 | screen; under X, this means it lies about where the focus is. | 120 | screen; under X, this means it lies about where the focus is. |
| 121 | This hook tells the window system code to re-decide where to put | 121 | This hook tells the window system code to re-decide where to put |
| 122 | the highlight. */ | 122 | the highlight. */ |
| 123 | extern void (*screen_rehighlight_hook) ( /* SCREEN_PTR s */ ); | 123 | void (*screen_rehighlight_hook) ( /* SCREEN_PTR s */ ); |
| 124 | 124 | ||
| 125 | /* Strings, numbers and flags taken from the termcap entry. */ | 125 | /* Strings, numbers and flags taken from the termcap entry. */ |
| 126 | 126 | ||