annotate lisp/gnus/lpath.el @ 30:ec9a17fef872 r19-15b98

Import from CVS: tag r19-15b98
author cvs
date Mon, 13 Aug 2007 08:52:29 +0200
parents d95e72db5c07
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
1 ;; Shut up.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
2
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
3 (defvar byte-compile-default-warnings)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
4
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
5 (defun maybe-fbind (args)
30
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
6 (while args
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
7 (or (fboundp (car args))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
8 (fset (car args) 'ignore))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
9 (setq args (cdr args))))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
10
30
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
11 (defun maybe-bind (args)
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
12 (mapcar (lambda (var) (unless (boundp var) (set var nil))) args))
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
13
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
14 (if (string-match "XEmacs" emacs-version)
30
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
15 (progn
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
16 (defvar track-mouse nil)
30
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
17 (maybe-fbind '(posn-point
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
18 event-start x-popup-menu
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
19 facemenu-get-face window-at coordinates-in-window-p
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
20 compute-motion x-defined-colors easy-menu-create-keymaps
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
21 read-event internal-find-face internal-next-face-id
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
22 make-face-internal set-frame-face-alist frame-face-alist
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
23 facemenu-add-new-face make-face-x-resource-internal
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
24 set-font-size set-font-family posn-window
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
25 run-with-idle-timer mouse-minibuffer-check window-edges
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
26 event-click-count track-mouse read-event mouse-movement-p
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
27 event-end mouse-scroll-subr overlay-lists delete-overlay
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
28 set-face-stipple mail-abbrevs-setup char-int
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
29 make-char-table set-char-table-range font-create-object
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
30 x-color-values widget-make-intangible error-message-string
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
31 w3-form-encode-xwfu
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
32 ))
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
33 (maybe-bind '(global-face-data
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
34 mark-active transient-mark-mode mouse-selection-click-count
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
35 mouse-selection-click-count-buffer buffer-display-table
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
36 font-lock-defaults user-full-name user-login-name
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
37 gnus-newsgroup-name gnus-article-x-face-too-ugly)))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
38 (defvar browse-url-browser-function nil)
30
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
39 (maybe-fbind '(color-instance-rgb-components
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
40 make-color-instance color-instance-name specifier-instance
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
41 device-type device-class get-popup-menu-response event-object
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
42 x-defined-colors read-color add-submenu set-font-family
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
43 font-create-object set-font-size frame-device find-face
30
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
44 set-extent-property make-extent characterp display-error
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
45 set-face-doc-string frame-property face-doc-string
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
46 button-press-event-p next-command-event
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
47 widget-make-intangible glyphp make-glyph set-glyph-image
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
48 set-glyph-property event-glyph glyph-property event-point
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
49 device-on-window-system-p make-gui-button Info-goto-node
ec9a17fef872 Import from CVS: tag r19-15b98
cvs
parents: 18
diff changeset
50 pp-to-string color-name)))
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
51
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
52 (setq load-path (cons "." load-path))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
53 (require 'custom)
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
54
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents:
diff changeset
55 (provide 'lpath)