aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2008-07-23 06:01:21 +0000
committerDan Nicolaescu2008-07-23 06:01:21 +0000
commit601fb9b822b020e1b9566b0a60874c1de89df0b2 (patch)
treec63b62244c6799db334dfc7ccee2572481cb9175
parent89e87059eb601cd685e4eee5649b7781b65a208c (diff)
downloademacs-601fb9b822b020e1b9566b0a60874c1de89df0b2.tar.gz
emacs-601fb9b822b020e1b9566b0a60874c1de89df0b2.zip
* term/ns-win.el:
* version.el (emacs-version): * loadup.el: * frame.el (make-frame-on-display): Check for ns instead of ns-windowing.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/frame.el2
-rw-r--r--lisp/loadup.el2
-rw-r--r--lisp/term/ns-win.el2
-rw-r--r--lisp/version.el2
5 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0412b67a76d..a12829d0f6d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,11 @@
12008-07-23 Dan Nicolaescu <dann@ics.uci.edu> 12008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
2 2
3 * term/ns-win.el:
4 * version.el (emacs-version):
5 * loadup.el:
6 * frame.el (make-frame-on-display): Check for ns instead of
7 ns-windowing.
8
3 * dired.el (dired-mode-map): Show the key binding for wdired. 9 * dired.el (dired-mode-map): Show the key binding for wdired.
4 10
5 * menu-bar.el (menu-bar-file-menu): Show the key binding for 11 * menu-bar.el (menu-bar-file-menu): Show the key binding for
diff --git a/lisp/frame.el b/lisp/frame.el
index 3682d1cc5e7..d959ce6571b 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -611,7 +611,7 @@ is not considered (see `next-frame')."
611 "Make a frame on X display DISPLAY. 611 "Make a frame on X display DISPLAY.
612The optional second argument PARAMETERS specifies additional frame parameters." 612The optional second argument PARAMETERS specifies additional frame parameters."
613 (interactive "sMake frame on display: ") 613 (interactive "sMake frame on display: ")
614 (if (featurep 'ns-windowing) 614 (if (featurep 'ns)
615 (progn 615 (progn
616 (when (and (boundp 'ns-initialized) (not ns-initialized)) 616 (when (and (boundp 'ns-initialized) (not ns-initialized))
617 (setq x-display-name display) 617 (setq x-display-name display)
diff --git a/lisp/loadup.el b/lisp/loadup.el
index 64433b2058a..e444fc5dcaa 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -214,7 +214,7 @@
214(if (featurep 'mac-carbon) 214(if (featurep 'mac-carbon)
215 (progn 215 (progn
216 (load "term/mac-win"))) 216 (load "term/mac-win")))
217(if (featurep 'ns-windowing) 217(if (featurep 'ns)
218 (progn 218 (progn
219 (load "emacs-lisp/easymenu") ;; for platform-related menu adjustments 219 (load "emacs-lisp/easymenu") ;; for platform-related menu adjustments
220 (load "term/ns-win"))) 220 (load "term/ns-win")))
diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el
index cdb5018e230..d6416c1b16e 100644
--- a/lisp/term/ns-win.el
+++ b/lisp/term/ns-win.el
@@ -39,7 +39,7 @@
39;;; Code: 39;;; Code:
40 40
41 41
42(if (not (featurep 'ns-windowing)) 42(if (not (featurep 'ns))
43 (error "%s: Loading ns-win.el but not compiled for GNUStep/MacOS" 43 (error "%s: Loading ns-win.el but not compiled for GNUStep/MacOS"
44 (invocation-name))) 44 (invocation-name)))
45 45
diff --git a/lisp/version.el b/lisp/version.el
index 5f136a5f4e1..74dd878d7e3 100644
--- a/lisp/version.el
+++ b/lisp/version.el
@@ -65,7 +65,7 @@ to the system configuration; look at `system-configuration' instead."
65 ((featurep 'gtk) 65 ((featurep 'gtk)
66 (concat ", GTK+ Version " gtk-version-string)) 66 (concat ", GTK+ Version " gtk-version-string))
67 ((featurep 'x-toolkit) ", X toolkit") 67 ((featurep 'x-toolkit) ", X toolkit")
68 ((featurep 'ns-windowing) 68 ((featurep 'ns)
69 (format ", *Step %s" ns-version-string)) 69 (format ", *Step %s" ns-version-string))
70 ((boundp 'mac-carbon-version-string) 70 ((boundp 'mac-carbon-version-string)
71 (concat ", Carbon Version " mac-carbon-version-string)) 71 (concat ", Carbon Version " mac-carbon-version-string))