emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

23.0.0; Nonsense in lisp/frame.el after cvs-update


From: Peter Dyballa
Subject: 23.0.0; Nonsense in lisp/frame.el after cvs-update
Date: Sat, 13 Oct 2007 13:12:40 +0200

Hello!

The change from this (enhanced for Mac OS X Cocoa/GNUSTEP Emacs.app) cond


    (cond ((memq window-system '(x mac))
           (x-focus-frame frame))
          ((eq window-system 'w32)
           (w32-focus-frame frame))
          ((eq window-system 'ns)
           (ns-focus-frame frame)))

to

    (cond ((memq (window-system frame) '(x max w32 n32))

The correct form surely is

    (cond ((memq (window-system frame) '(x mac w32 ns))


--
Greetings

  Pete

If all else fails read the instructions.
                                         - Donald Knuth






reply via email to

[Prev in Thread] Current Thread [Next in Thread]