emacs-pretest-bug
[Top][All Lists]
Advanced

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

Re: set-variable() causes some warnings in NTEmacs


From: Eli Zaretskii
Subject: Re: set-variable() causes some warnings in NTEmacs
Date: Sun, 22 May 2005 06:26:17 +0300

> Date: Sun, 22 May 2005 10:55:10 +0900
> From: MIYOSHI Masanori <address@hidden>
> 
> --- cus-start.el.orig
> +++ cus-start.el
> @@ -323,7 +323,13 @@
>                     ((string-match "\\`w32-" (symbol-name symbol))
>                      (eq system-type 'windows-nt))
>                     ((string-match "\\`x-" (symbol-name symbol))
> -                    (fboundp 'x-create-frame))
> +                    (and (fboundp 'x-create-frame)
> +                         (cond
> +                          ((eq system-type 'windows-nt)
> +                           (not (memq symbol
> +                                      '(x-use-old-gtk-file-dialog
> +                                        
> x-use-underline-position-properties))))
> +                          (t t))))
> 

Can't this be achieved without using system-type?  Why does Emacs on
Windows reference a GTK-related variable?




reply via email to

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