diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/term/w32-win.el | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4fe36bccb12..f2b99c23a28 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-01-17 Jason Rumney <jasonr@gnu.org> | ||
| 2 | |||
| 3 | * term/w32-win.el: Restore conditional require of fontset. | ||
| 4 | |||
| 1 | 2002-01-16 Richard M. Stallman <rms@gnu.org> | 5 | 2002-01-16 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * mouse.el (mouse-drag-region-1): Renamed from mouse-drag-region, | 7 | * mouse.el (mouse-drag-region-1): Renamed from mouse-drag-region, |
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el index 2f7cb28608c..a31cf3c9d76 100644 --- a/lisp/term/w32-win.el +++ b/lisp/term/w32-win.el | |||
| @@ -76,7 +76,8 @@ | |||
| 76 | (require 'faces) | 76 | (require 'faces) |
| 77 | (require 'select) | 77 | (require 'select) |
| 78 | (require 'menu-bar) | 78 | (require 'menu-bar) |
| 79 | (require 'fontset) | 79 | (if (fboundp 'new-fontset) |
| 80 | (require 'fontset)) | ||
| 80 | 81 | ||
| 81 | ;; The following definition is used for debugging scroll bar events. | 82 | ;; The following definition is used for debugging scroll bar events. |
| 82 | ;(defun w32-handle-scroll-bar-event (event) (interactive "e") (princ event)) | 83 | ;(defun w32-handle-scroll-bar-event (event) (interactive "e") (princ event)) |