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