Mercurial > hg > xemacs-beta
view lisp/gnome.el @ 4196:ffcf5a27df12
[xemacs-hg @ 2007-09-30 15:26:05 by adrian]
xemacs-21.5-clean: Introduce TEXI2HTML_NOSPLIT in man/Makefile rules for beta.html and xemacs-faq.html
-------------------- ChangeLog entries follow: --------------------
man/ChangeLog addition:
2007-09-30 Adrian Aichner <adrian@xemacs.org>
* Makefile (TEXI2HTML_NOSPLIT): New.
* Makefile ($(HTMLDIR)/beta.html): Use TEXI2HTML_NOSPLIT.
* Makefile ($(HTMLDIR)/xemacs-faq.html): Ditto.
author | adrian |
---|---|
date | Sun, 30 Sep 2007 15:26:05 +0000 |
parents | 7039e6323819 |
children | db7068430402 |
line wrap: on
line source
(globally-declare-fboundp '(gtk-type-from-name gtk-import-function-internal gtk-call-function)) (defvar gnome-init-called nil) (defun gnome-init (app-id app-version argv) (mapc 'dll-load '("libgnomesupport.so" "libgnome.so" "libgnomeui.so" "libesd.so" "libaudiofile.so" "libart_lgpl.so")) (if (and (not (noninteractive)) (not gnome-init-called) (= (gtk-type-from-name "GnomeApp") 0)) (prog1 (gtk-call-function (gtk-import-function-internal 'gint "gnome_init" '(GtkString GtkString gint GtkArrayOfString)) (list app-id app-version (length argv) argv)) (setq gnome-init-called t)))) (require 'gnome-widgets) (provide 'gnome)