Mercurial > hg > xemacs-beta
comparison src/frame.c @ 2747:0882ede40b55
[xemacs-hg @ 2005-04-27 09:01:43 by stephent]
suppress WM decorations <87oec0lhmj.fsf@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Wed, 27 Apr 2005 09:01:48 +0000 |
parents | 6fa9919a9a0b |
children | 1e7cc382eb16 |
comparison
equal
deleted
inserted
replaced
2746:9ef1181e0f51 | 2747:0882ede40b55 |
---|---|
3855 Plist of default values for frame creation, other than the first one. | 3855 Plist of default values for frame creation, other than the first one. |
3856 These may be set in your init file, like this: | 3856 These may be set in your init file, like this: |
3857 | 3857 |
3858 \(setq default-frame-plist '(width 80 height 55)) | 3858 \(setq default-frame-plist '(width 80 height 55)) |
3859 | 3859 |
3860 Predefined properties are described in `set-frame-properties'. | |
3861 | |
3860 The properties may be in alist format for backward compatibility | 3862 The properties may be in alist format for backward compatibility |
3861 but you should not rely on this behavior. | 3863 but you should not rely on this behavior. |
3862 | 3864 |
3863 These override values given in window system configuration data, | 3865 These override values given in window system configuration data, |
3864 including X Windows' defaults database. | 3866 including X Windows' defaults database. |
3865 | 3867 |
3866 Since the first X frame is created before loading your .emacs file, | 3868 Values for the first Emacs frame are taken from `initial-frame-plist'. |
3867 you must use the X resource database for that. | 3869 Since the first X frame is created before loading your .emacs file, you |
3868 | 3870 may wish use the X resource database to avoid flashing. |
3869 For values specific to the first Emacs frame, see `initial-frame-plist'. | 3871 |
3870 For values specific to the separate minibuffer frame, see | 3872 For values specific to the separate minibuffer frame, see |
3871 `minibuffer-frame-plist'. | 3873 `minibuffer-frame-plist'. See also the variables `default-x-frame-plist' |
3872 | 3874 and `default-tty-frame-plist', which are like `default-frame-plist' |
3873 See also the variables `default-x-frame-plist' and | 3875 except that they apply only to X or tty frames, respectively \(whereas |
3874 `default-tty-frame-plist', which are like `default-frame-plist' | 3876 `default-frame-plist' applies to all types of frames). |
3875 except that they apply only to X or tty frames, respectively | |
3876 \(whereas `default-frame-plist' applies to all types of frames). | |
3877 */ ); | 3877 */ ); |
3878 Vdefault_frame_plist = Qnil; | 3878 Vdefault_frame_plist = Qnil; |
3879 | 3879 |
3880 DEFVAR_LISP ("frame-icon-glyph", &Vframe_icon_glyph /* | 3880 DEFVAR_LISP ("frame-icon-glyph", &Vframe_icon_glyph /* |
3881 Icon glyph used to iconify a frame. | 3881 Icon glyph used to iconify a frame. |