diff options
| author | Jason Rumney | 2002-01-17 19:33:03 +0000 |
|---|---|---|
| committer | Jason Rumney | 2002-01-17 19:33:03 +0000 |
| commit | b05f815e1c3bbda95bdd61aeed2c86cbb5b47460 (patch) | |
| tree | cff09a40d5f68f8296b6b71d3c01f48713de75d3 | |
| parent | 64f41d64a959b03661aec0fc734a39c275b384fa (diff) | |
| download | emacs-b05f815e1c3bbda95bdd61aeed2c86cbb5b47460.tar.gz emacs-b05f815e1c3bbda95bdd61aeed2c86cbb5b47460.zip | |
Add comments to avoid future deletion of conditionals that seem
unnecessary on w32.
| -rw-r--r-- | lisp/term/w32-win.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el index a31cf3c9d76..b98cfea4233 100644 --- a/lisp/term/w32-win.el +++ b/lisp/term/w32-win.el | |||
| @@ -76,6 +76,7 @@ | |||
| 76 | (require 'faces) | 76 | (require 'faces) |
| 77 | (require 'select) | 77 | (require 'select) |
| 78 | (require 'menu-bar) | 78 | (require 'menu-bar) |
| 79 | ;; Conditional on new-fontset so bootstrapping works on non-GUI compiles | ||
| 79 | (if (fboundp 'new-fontset) | 80 | (if (fboundp 'new-fontset) |
| 80 | (require 'fontset)) | 81 | (require 'fontset)) |
| 81 | 82 | ||
| @@ -1189,6 +1190,7 @@ European languages which are distributed with Windows as | |||
| 1189 | 1190 | ||
| 1190 | See the documentation of `create-fontset-from-fontset-spec for the format.") | 1191 | See the documentation of `create-fontset-from-fontset-spec for the format.") |
| 1191 | 1192 | ||
| 1193 | ;; Conditional on new-fontset so bootstrapping works on non-GUI compiles | ||
| 1192 | (if (fboundp 'new-fontset) | 1194 | (if (fboundp 'new-fontset) |
| 1193 | (progn | 1195 | (progn |
| 1194 | ;; Create the standard fontset. | 1196 | ;; Create the standard fontset. |
| @@ -1399,6 +1401,7 @@ font dialog to get the matching FONTS. Otherwise use a pop-up menu | |||
| 1399 | (x-popup-menu | 1401 | (x-popup-menu |
| 1400 | last-nonmenu-event | 1402 | last-nonmenu-event |
| 1401 | ;; Append list of fontsets currently defined. | 1403 | ;; Append list of fontsets currently defined. |
| 1404 | ;; Conditional on new-fontset so bootstrapping works on non-GUI compiles | ||
| 1402 | (if (fboundp 'new-fontset) | 1405 | (if (fboundp 'new-fontset) |
| 1403 | (append w32-fixed-font-alist (list (generate-fontset-menu))))))) | 1406 | (append w32-fixed-font-alist (list (generate-fontset-menu))))))) |
| 1404 | (if fonts | 1407 | (if fonts |