diff options
| author | Geoff Voelker | 1996-11-19 06:59:17 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1996-11-19 06:59:17 +0000 |
| commit | b86b9918ddbab4504682eb1dd0fb86fc05ef2510 (patch) | |
| tree | 2ccfd3d262451acdb6c03f2e02a21d3609773d00 | |
| parent | 60c7469c6dce193c421bb535302c3a6b260cf395 (diff) | |
| download | emacs-b86b9918ddbab4504682eb1dd0fb86fc05ef2510.tar.gz emacs-b86b9918ddbab4504682eb1dd0fb86fc05ef2510.zip | |
Use w32 instead of ms-windows for window-system symbol
| -rw-r--r-- | lisp/facemenu.el | 2 | ||||
| -rw-r--r-- | lisp/faces.el | 6 | ||||
| -rw-r--r-- | lisp/hippie-exp.el | 2 | ||||
| -rw-r--r-- | lisp/info.el | 2 | ||||
| -rw-r--r-- | lisp/mouse.el | 2 | ||||
| -rw-r--r-- | lisp/vc.el | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/lisp/facemenu.el b/lisp/facemenu.el index bf6cad47f24..07d5f52c628 100644 --- a/lisp/facemenu.el +++ b/lisp/facemenu.el | |||
| @@ -491,7 +491,7 @@ This function queries the window-system server to find out what the | |||
| 491 | color names mean. It returns nil if the colors differ or if it can't | 491 | color names mean. It returns nil if the colors differ or if it can't |
| 492 | determine the correct answer." | 492 | determine the correct answer." |
| 493 | (cond ((equal a b) t) | 493 | (cond ((equal a b) t) |
| 494 | ((and (memq window-system '(x ms-windows)) | 494 | ((and (memq window-system '(x w32)) |
| 495 | (equal (x-color-values a) (x-color-values b)))) | 495 | (equal (x-color-values a) (x-color-values b)))) |
| 496 | ((eq window-system 'pc) | 496 | ((eq window-system 'pc) |
| 497 | (and (x-color-defined-p a) (x-color-defined-p b) | 497 | (and (x-color-defined-p a) (x-color-defined-p b) |
diff --git a/lisp/faces.el b/lisp/faces.el index 65011985dbb..41d85b43c0c 100644 --- a/lisp/faces.el +++ b/lisp/faces.el | |||
| @@ -409,7 +409,7 @@ If the face already exists, it is unmodified." | |||
| 409 | (setq frames (cdr frames))) | 409 | (setq frames (cdr frames))) |
| 410 | (setq global-face-data (cons (cons name face) global-face-data))) | 410 | (setq global-face-data (cons (cons name face) global-face-data))) |
| 411 | ;; when making a face after frames already exist | 411 | ;; when making a face after frames already exist |
| 412 | (if (memq window-system '(x ms-windows)) | 412 | (if (memq window-system '(x w32)) |
| 413 | (make-face-x-resource-internal face)) | 413 | (make-face-x-resource-internal face)) |
| 414 | ;; add to menu | 414 | ;; add to menu |
| 415 | (if (fboundp 'facemenu-add-new-face) | 415 | (if (fboundp 'facemenu-add-new-face) |
| @@ -423,7 +423,7 @@ If the face already exists, it is unmodified." | |||
| 423 | (cond ((null frame) | 423 | (cond ((null frame) |
| 424 | (let ((frames (frame-list))) | 424 | (let ((frames (frame-list))) |
| 425 | (while frames | 425 | (while frames |
| 426 | (if (memq (framep (car frames)) '(x ms-windows)) | 426 | (if (memq (framep (car frames)) '(x w32)) |
| 427 | (make-face-x-resource-internal (face-name face) | 427 | (make-face-x-resource-internal (face-name face) |
| 428 | (car frames) set-anyway)) | 428 | (car frames) set-anyway)) |
| 429 | (setq frames (cdr frames))))) | 429 | (setq frames (cdr frames))))) |
| @@ -1303,7 +1303,7 @@ selected frame." | |||
| 1303 | (setq colors (cdr colors))))))) | 1303 | (setq colors (cdr colors))))))) |
| 1304 | 1304 | ||
| 1305 | ;; If we are already using x-window frames, initialize faces for them. | 1305 | ;; If we are already using x-window frames, initialize faces for them. |
| 1306 | (if (memq (framep (selected-frame)) '(x ms-windows)) | 1306 | (if (memq (framep (selected-frame)) '(x w32)) |
| 1307 | (face-initialize)) | 1307 | (face-initialize)) |
| 1308 | 1308 | ||
| 1309 | (provide 'faces) | 1309 | (provide 'faces) |
diff --git a/lisp/hippie-exp.el b/lisp/hippie-exp.el index ddb896befdb..caa479d9ec8 100644 --- a/lisp/hippie-exp.el +++ b/lisp/hippie-exp.el | |||
| @@ -493,7 +493,7 @@ otherwise." | |||
| 493 | (string= (substring name-part 0 2) "[.")) | 493 | (string= (substring name-part 0 2) "[.")) |
| 494 | (concat (substring dir-part 0 -1) (substring name-part 1)) | 494 | (concat (substring dir-part 0 -1) (substring name-part 1)) |
| 495 | (concat dir-part name-part))) | 495 | (concat dir-part name-part))) |
| 496 | ((memq system-type '(ms-dos ms-windows)) | 496 | ((memq system-type '(ms-dos w32)) |
| 497 | (if (and (string-match "\\\\" dir-part) | 497 | (if (and (string-match "\\\\" dir-part) |
| 498 | (not (string-match "/" dir-part)) | 498 | (not (string-match "/" dir-part)) |
| 499 | (= (aref name-part (1- (length name-part))) ?/)) | 499 | (= (aref name-part (1- (length name-part))) ?/)) |
diff --git a/lisp/info.el b/lisp/info.el index 5ec81da6ca8..9e001469073 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -1719,7 +1719,7 @@ Advanced commands: | |||
| 1719 | (make-local-variable 'Info-tag-table-marker) | 1719 | (make-local-variable 'Info-tag-table-marker) |
| 1720 | (make-local-variable 'Info-history) | 1720 | (make-local-variable 'Info-history) |
| 1721 | (make-local-variable 'Info-index-alternatives) | 1721 | (make-local-variable 'Info-index-alternatives) |
| 1722 | (if (memq (framep (selected-frame)) '(x pc ms-windows)) | 1722 | (if (memq (framep (selected-frame)) '(x pc w32)) |
| 1723 | (progn | 1723 | (progn |
| 1724 | (make-face 'info-node) | 1724 | (make-face 'info-node) |
| 1725 | (make-face 'info-menu-5) | 1725 | (make-face 'info-menu-5) |
diff --git a/lisp/mouse.el b/lisp/mouse.el index de0735529f7..0981533d038 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el | |||
| @@ -401,7 +401,7 @@ This should be bound to a mouse drag event." | |||
| 401 | ;; If mark is highlighted, no need to bounce the cursor. | 401 | ;; If mark is highlighted, no need to bounce the cursor. |
| 402 | ;; On X, we highlight while dragging, thus once again no need to bounce. | 402 | ;; On X, we highlight while dragging, thus once again no need to bounce. |
| 403 | (or transient-mark-mode | 403 | (or transient-mark-mode |
| 404 | (memq (framep (selected-frame)) '(x pc ms-windows)) | 404 | (memq (framep (selected-frame)) '(x pc w32)) |
| 405 | (sit-for 1)) | 405 | (sit-for 1)) |
| 406 | (push-mark) | 406 | (push-mark) |
| 407 | (set-mark (point)) | 407 | (set-mark (point)) |
diff --git a/lisp/vc.el b/lisp/vc.el index 1ed84971b0d..7c7cdced2ea 100644 --- a/lisp/vc.el +++ b/lisp/vc.el | |||
| @@ -424,7 +424,7 @@ to an optional list of FLAGS." | |||
| 424 | path-separator | 424 | path-separator |
| 425 | (mapconcat 'identity vc-path path-separator)) | 425 | (mapconcat 'identity vc-path path-separator)) |
| 426 | process-environment)) | 426 | process-environment)) |
| 427 | (win32-quote-process-args t)) | 427 | (w32-quote-process-args t)) |
| 428 | (setq status (apply 'call-process command nil t nil squeezed))) | 428 | (setq status (apply 'call-process command nil t nil squeezed))) |
| 429 | (goto-char (point-max)) | 429 | (goto-char (point-max)) |
| 430 | (set-buffer-modified-p nil) | 430 | (set-buffer-modified-p nil) |