aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1991-07-19 20:39:25 +0000
committerJim Blandy1991-07-19 20:39:25 +0000
commitfcb764df08fdcc0793c4a5e9e038452183721cbe (patch)
tree7a368b5c97bc46d72cefde82f7662cae3ed936ed
parent2e146aa4c35f809e8e8dfc18dfd270c2660535b4 (diff)
downloademacs-fcb764df08fdcc0793c4a5e9e038452183721cbe.tar.gz
emacs-fcb764df08fdcc0793c4a5e9e038452183721cbe.zip
*** empty log message ***
-rw-r--r--lisp/emacs-lisp/backquote.el2
-rw-r--r--src/term.c2
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. */
123extern void (*screen_rehighlight_hook) ( /* SCREEN_PTR s */ ); 123void (*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