diff lisp/prim/gui.el @ 173:8eaf7971accc r20-3b13

Import from CVS: tag r20-3b13
author cvs
date Mon, 13 Aug 2007 09:49:09 +0200
parents 131b0175ea99
children
line wrap: on
line diff
--- a/lisp/prim/gui.el	Mon Aug 13 09:47:55 2007 +0200
+++ b/lisp/prim/gui.el	Mon Aug 13 09:49:09 2007 +0200
@@ -1,5 +1,9 @@
 ;;; gui.el --- Basic GUI functions for XEmacs.
+
 ;; Copyright (C) 1996 Ben Wing
+
+;; Maintainer: XEmacs Development Team
+;; Keywords: internal
  
 ;; This file is part of XEmacs.
 
@@ -18,10 +22,14 @@
 ;; Free Software Foundation, 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
-(defvar dialog-frame-plist '(width 60 height 20)
+(defcustom dialog-frame-plist '(width 60 height 20)
   "Plist of frame properties for initially creating a dialog frame.
 Properties specified here supersede the values given in
-`default-frame-plist'.")
+`default-frame-plist'."
+  :type '(repeat (group :inline t
+			(symbol :tag "Property")
+			(sexp :tag "Value")))
+  :group 'frames)
 
 (defun make-dialog-frame (&optional props parent)
   "Create a frame suitable for use as a dialog box.