Mercurial > hg > xemacs-beta
view lisp/gtk-package.el @ 1274:2dcc22ec7640
[xemacs-hg @ 2003-02-08 02:28:12 by ben]
hyper-apropos.el: Separate obsolete and non-obsolete stuff and make sure we note
when obsolete funs are just aliases for others. Also fix some
problems with doc string hacking.
menubar-items.el: Change the Help->Info submenu a bit.
text-props.el: Fix bug when end > start.
update-elc.el: Add raw-process.el.
lread.c: Eliminate printing `done' messages noninteractively since it's now
obvious which files are loaded by which others.
author | ben |
---|---|
date | Sat, 08 Feb 2003 02:28:15 +0000 |
parents | 7039e6323819 |
children | db7068430402 |
line wrap: on
line source
;; A GTK version of package-ui.el (globally-declare-fboundp '(gtk-window-new gtk-hbox-new gtk-container-add gtk-widget-show-all)) (require 'package-get) (require 'package-ui) (defun package-gtk-edit-sites () (let ((window (gtk-window-new 'toplevel)) (box (gtk-hbox-new nil 5))) (gtk-container-add window box) (gtk-widget-show-all window)))