* gnus.el: Fixed all the doc strings to match the FSF convetions.
[gnus] / lisp / lpath.el
1 ;; Shut up.
2
3 (defvar byte-compile-default-warnings)
4
5 (defun maybe-fbind (args)
6   (while args
7     (or (fboundp (car args))
8         (fset (car args) 'ignore))
9     (setq args (cdr args))))
10
11 (defun maybe-bind (args)
12   (mapcar (lambda (var) (unless (boundp var) (set var nil))) args))
13
14 (if (string-match "XEmacs" emacs-version)
15     (progn
16       (defvar track-mouse nil)
17       (maybe-fbind '(posn-point
18                      event-start x-popup-menu
19                      facemenu-get-face window-at coordinates-in-window-p
20                      compute-motion x-defined-colors easy-menu-create-keymaps
21                      read-event internal-find-face internal-next-face-id
22                      make-face-internal set-frame-face-alist frame-face-alist
23                      facemenu-add-new-face make-face-x-resource-internal
24                      set-font-size set-font-family posn-window
25                      run-with-idle-timer mouse-minibuffer-check window-edges
26                      event-click-count track-mouse read-event mouse-movement-p
27                      event-end mouse-scroll-subr overlay-lists delete-overlay
28                      set-face-stipple mail-abbrevs-setup
29                      make-char-table set-char-table-range font-create-object
30                      x-color-values widget-make-intangible error-message-string
31                      w3-form-encode-xwfu gnus-mule-get-coding-system
32                      decode-coding-string mail-aliases-setup
33                      mm-copy-tree url-view-url w3-prepare-buffer
34                      set-buffer-multibyte
35                      find-non-ascii-charset-region char-charset
36                      mule-write-region-no-coding-system
37                      find-charset-region
38                      find-coding-systems-region get-charset-property
39                      coding-system-get w3-region
40                      w3-coding-system-for-mime-charset 
41                      rmail-summary-exists rmail-select-summary
42                      rmail-update-summary url-retrieve
43                      temp-directory babel-fetch babel-wash
44                      find-coding-systems-for-charsets sc-cite-regexp
45                      pop3-get-message-count))
46       (maybe-bind '(global-face-data
47                     mark-active transient-mark-mode mouse-selection-click-count
48                     mouse-selection-click-count-buffer buffer-display-table
49                     font-lock-defaults user-full-name user-login-name
50                     gnus-newsgroup-name gnus-article-x-face-too-ugly
51                     gnus-newsgroup-charset gnus-newsgroup-emphasis-alist
52                     mail-mode-hook
53                     adaptive-fill-first-line-regexp adaptive-fill-regexp
54                     url-current-mime-headers buffer-file-coding-system
55                     w3-image-mappings url-current-mime-type
56                     w3-meta-content-type-charset-regexp
57                     w3-meta-charset-content-type-regexp
58                     url-current-callback-func url-current-callback-data
59                     url-be-asynchronous temporary-file-directory
60                     babel-translations babel-history
61                     display-time-mail-function)))
62   (maybe-bind '(mail-mode-hook
63                 enable-multibyte-characters browse-url-browser-function
64                 adaptive-fill-first-line-regexp adaptive-fill-regexp
65                 url-current-mime-headers help-echo-owns-message
66                 w3-meta-content-type-charset-regexp
67                 w3-meta-charset-content-type-regexp
68                 babel-translations babel-history
69                 display-time-mail-function))
70   (maybe-fbind '(color-instance-rgb-components temp-directory
71                                                glyph-width annotation-glyph window-pixel-width glyph-height
72                                                window-pixel-height map-extents
73                                                make-color-instance color-instance-name specifier-instance
74                                                device-type device-class get-popup-menu-response event-object
75                                                x-defined-colors read-color add-submenu set-font-family
76                                                font-create-object set-font-size frame-device find-face
77                                                set-extent-property make-extent characterp display-error
78                                                set-face-doc-string frame-property face-doc-string
79                                                button-press-event-p next-command-event
80                                                widget-make-intangible glyphp make-glyph set-glyph-image
81                                                set-glyph-property event-glyph glyph-property event-point
82                                                device-on-window-system-p make-gui-button Info-goto-node
83                                                pp-to-string color-name
84                                                gnus-mule-get-coding-system decode-coding-string
85                                                mail-aliases-setup
86                                                mm-copy-tree url-view-url w3-prepare-buffer
87                                                mule-write-region-no-coding-system char-int
88                                                annotationp delete-annotation make-image-specifier
89                                                make-annotation events-to-keys
90                                                w3-do-setup w3-region
91                                                w3-coding-system-for-mime-charset 
92                                                rmail-summary-exists rmail-select-summary rmail-update-summary
93                                                url-generic-parse-url valid-image-instantiator-format-p
94                                                babel-fetch babel-wash babel-as-string sc-cite-regexp
95                                                pop3-get-message-count)))
96
97 (setq load-path (cons "." load-path))
98 (require 'custom)
99
100 (defun md5 (a &optional b c)
101   )
102
103 (provide 'lpath)