annotate lisp/gtk-package.el @ 4482:e3ef34f57070
Bind function-key-map correctly in device-specific startup code.
2008-07-26 Aidan Kehoe <kehoea@parhasard.net>
* x-init.el (x-initialize-compose):
Rewrite to use #'loop, as does similar code in x-win-sun.el,
x-win-xfree86.el. Locally bind function-key-map to the correct
value for the device's console.
* x-win-xfree86.el (x-win-init-xfree86):
Locally bind function-key-map to the correct value for the
device's console.
* x-win-sun.el (x-win-init-sun):
Locally bind function-key-map to the correct value for the
device's console.
| author |
Aidan Kehoe <kehoea@parhasard.net> |
| date |
Sat, 26 Jul 2008 09:37:08 +0200 |
| parents |
7039e6323819 |
| children |
db7068430402 |
| rev |
line source |
|
462
|
1 ;; A GTK version of package-ui.el
|
|
|
2
|
|
502
|
3 (globally-declare-fboundp
|
|
|
4 '(gtk-window-new
|
|
|
5 gtk-hbox-new gtk-container-add gtk-widget-show-all))
|
|
|
6
|
|
462
|
7 (require 'package-get)
|
|
|
8 (require 'package-ui)
|
|
|
9
|
|
|
10 (defun package-gtk-edit-sites ()
|
|
|
11 (let ((window (gtk-window-new 'toplevel))
|
|
|
12 (box (gtk-hbox-new nil 5)))
|
|
|
13 (gtk-container-add window box)
|
|
|
14 (gtk-widget-show-all window)))
|