diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/bindings.el | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 424274a2aee..e377509053f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 1999-10-17 Sam Steingold <sds@ksp.com> | ||
| 2 | |||
| 3 | * bindings.el (completion-ignored-extensions): Added ".sparcf" | ||
| 4 | for CMUCL on sparc and ".ufsl" for LispWorks. | ||
| 5 | (bound-and-true-p): Bugfix: free variable `v'. | ||
| 6 | |||
| 1 | 1999-10-16 Dave Love <d.love@dl.ac.uk> | 7 | 1999-10-16 Dave Love <d.love@dl.ac.uk> |
| 2 | 8 | ||
| 3 | * emacs-lisp/edebug.el (edebug-install-read-eval-functions) | 9 | * emacs-lisp/edebug.el (edebug-install-read-eval-functions) |
diff --git a/lisp/bindings.el b/lisp/bindings.el index e6ed9323db2..380f9a7e69c 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el | |||
| @@ -186,7 +186,7 @@ Return a string to display in the mode line for the current mode name." | |||
| 186 | 186 | ||
| 187 | (defmacro bound-and-true-p (var) | 187 | (defmacro bound-and-true-p (var) |
| 188 | "Return the value of symbol VAR if it is bound, else nil." | 188 | "Return the value of symbol VAR if it is bound, else nil." |
| 189 | `(and (boundp (quote ,v)) ,var)) | 189 | `(and (boundp (quote ,var)) ,var)) |
| 190 | 190 | ||
| 191 | (defvar mode-line-mouse-sensitive-p nil "\ | 191 | (defvar mode-line-mouse-sensitive-p nil "\ |
| 192 | Non-nil means mode line has been made mouse-sensitive.") | 192 | Non-nil means mode line has been made mouse-sensitive.") |
| @@ -287,7 +287,7 @@ Menu of mode operations in the mode line.") | |||
| 287 | ".brn" ".rnt" ".mem" ".lni" ".lis" | 287 | ".brn" ".rnt" ".mem" ".lni" ".lis" |
| 288 | ".olb" ".tlb" ".mlb" ".hlb")) | 288 | ".olb" ".tlb" ".mlb" ".hlb")) |
| 289 | (t | 289 | (t |
| 290 | '(".o" "~" ".bin" ".lbin" ".fasl" | 290 | '(".o" "~" ".bin" ".lbin" ".fasl" ".ufsl" |
| 291 | ".a" ".ln" ".blg" ".bbl"))) | 291 | ".a" ".ln" ".blg" ".bbl"))) |
| 292 | '(".elc" ".lof" | 292 | '(".elc" ".lof" |
| 293 | ".glo" ".idx" ".lot" | 293 | ".glo" ".idx" ".lot" |
| @@ -298,7 +298,7 @@ Menu of mode operations in the mode line.") | |||
| 298 | ;; Clisp | 298 | ;; Clisp |
| 299 | ".fas" ".lib" | 299 | ".fas" ".lib" |
| 300 | ;; CMUCL | 300 | ;; CMUCL |
| 301 | ".x86f" | 301 | ".x86f" ".sparcf" |
| 302 | ;; Texinfo-related | 302 | ;; Texinfo-related |
| 303 | ".toc" ".log" ".aux" | 303 | ".toc" ".log" ".aux" |
| 304 | ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" | 304 | ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" |