comparison man/widget.texi @ 106:8ff55ebd4be9 r20-1b5

Import from CVS: tag r20-1b5
author cvs
date Mon, 13 Aug 2007 09:17:26 +0200
parents a145efe76779
children 360340f9fd5f
comparison
equal deleted inserted replaced
105:e59cf502fb45 106:8ff55ebd4be9
1 \input texinfo.tex 1 \input texinfo.tex
2 2
3 @c $Id: widget.texi,v 1.4 1997/02/27 06:08:38 steve Exp $ 3 @c $Id: widget.texi,v 1.5 1997/03/04 08:01:33 steve Exp $
4 4
5 @c %**start of header 5 @c %**start of header
6 @setfilename widget 6 @setfilename widget
7 @settitle The Emacs Widget Library 7 @settitle The Emacs Widget Library
8 @iftex 8 @iftex
13 13
14 @node Top, Introduction, (dir), (dir) 14 @node Top, Introduction, (dir), (dir)
15 @comment node-name, next, previous, up 15 @comment node-name, next, previous, up
16 @top The Emacs Widget Library 16 @top The Emacs Widget Library
17 17
18 Version: 1.46 18 Version: 1.50
19 19
20 @menu 20 @menu
21 * Introduction:: 21 * Introduction::
22 * User Interface:: 22 * User Interface::
23 * Programming Example:: 23 * Programming Example::
113 113
114 @table @file 114 @table @file
115 @item widget.el 115 @item widget.el
116 This will declare the user variables, define the function 116 This will declare the user variables, define the function
117 @code{widget-define}, and autoload the function @code{widget-create}. 117 @code{widget-define}, and autoload the function @code{widget-create}.
118 @item widget-edit.el 118 @item wid-edit.el
119 Everything else is here, there is no reason to load it explicitly, as 119 Everything else is here, there is no reason to load it explicitly, as
120 it will be autoloaded when needed. 120 it will be autoloaded when needed.
121 @end table 121 @end table
122 122
123 @node User Interface, Programming Example, Introduction, Top 123 @node User Interface, Programming Example, Introduction, Top
276 276
277 @lisp 277 @lisp
278 (require 'widget) 278 (require 'widget)
279 279
280 (eval-when-compile 280 (eval-when-compile
281 (require 'widget-edit)) 281 (require 'wid-edit))
282 282
283 (defvar widget-example-repeat) 283 (defvar widget-example-repeat)
284 284
285 (defun widget-example () 285 (defun widget-example ()
286 "Create the widgets from the Widget manual." 286 "Create the widgets from the Widget manual."