* term/ns-win.el:
authorDan Nicolaescu <dann@ics.uci.edu>
Wed, 23 Jul 2008 06:01:21 +0000 (06:01 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Wed, 23 Jul 2008 06:01:21 +0000 (06:01 +0000)
* version.el (emacs-version):
* loadup.el:
* frame.el (make-frame-on-display): Check for ns instead of
ns-windowing.

lisp/ChangeLog
lisp/frame.el
lisp/loadup.el
lisp/term/ns-win.el
lisp/version.el

index 0412b67..a12829d 100644 (file)
@@ -1,5 +1,11 @@
 2008-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
 
+       * term/ns-win.el:
+       * version.el (emacs-version):
+       * loadup.el:
+       * frame.el (make-frame-on-display): Check for ns instead of
+       ns-windowing.
+
        * dired.el (dired-mode-map): Show the key binding for wdired.
 
        * menu-bar.el (menu-bar-file-menu): Show the key binding for
index 3682d1c..d959ce6 100644 (file)
@@ -611,7 +611,7 @@ is not considered (see `next-frame')."
   "Make a frame on X display DISPLAY.
 The optional second argument PARAMETERS specifies additional frame parameters."
   (interactive "sMake frame on display: ")
-  (if (featurep 'ns-windowing)
+  (if (featurep 'ns)
       (progn
        (when (and (boundp 'ns-initialized) (not ns-initialized))
          (setq x-display-name display)
index 64433b2..e444fc5 100644 (file)
 (if (featurep 'mac-carbon)
     (progn
       (load "term/mac-win")))
-(if (featurep 'ns-windowing)
+(if (featurep 'ns)
     (progn
       (load "emacs-lisp/easymenu")  ;; for platform-related menu adjustments
       (load "term/ns-win")))
index cdb5018..d6416c1 100644 (file)
@@ -39,7 +39,7 @@
 ;;; Code:
 
 
-(if (not (featurep 'ns-windowing))
+(if (not (featurep 'ns))
     (error "%s: Loading ns-win.el but not compiled for GNUStep/MacOS"
           (invocation-name)))
 
index 5f136a5..74dd878 100644 (file)
@@ -65,7 +65,7 @@ to the system configuration; look at `system-configuration' instead."
                       ((featurep 'gtk)
                        (concat ", GTK+ Version " gtk-version-string))
                       ((featurep 'x-toolkit) ", X toolkit")
-                      ((featurep 'ns-windowing)
+                      ((featurep 'ns)
                        (format ", *Step %s" ns-version-string))
                       ((boundp 'mac-carbon-version-string)
                        (concat ", Carbon Version " mac-carbon-version-string))