X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=lisp%2Flpath.el;h=018179dbfb02649dc8fcec445d4502656ac38f6a;hb=9b741e050b400987d68ff761c6cc3276c932839c;hp=55a0596d24ca4662e8a3b5b264771a0babd446cb;hpb=cfc6aa89a09f7e9e4a96c5b5d740be411681ba75;p=elisp%2Fgnus.git- diff --git a/lisp/lpath.el b/lisp/lpath.el index 55a0596..018179d 100644 --- a/lisp/lpath.el +++ b/lisp/lpath.el @@ -13,33 +13,55 @@ (maybe-fbind '(babel-fetch babel-wash create-image decode-coding-string display-graphic-p + replace-regexp-in-string display-time-event-handler find-image font-create-object gnus-mule-get-coding-system font-lock-set-defaults + find-coding-systems-string image-size image-type-available-p insert-image + image-type-from-file-header + make-symbolic-link make-temp-file message-xmas-redefine + mail-abbrev-in-expansion-header-p mail-aliases-setup mm-copy-tree mule-write-region-no-coding-system put-image ring-elements + charsetp sort-coding-systems + coding-system-p coding-system-list + propertize make-mode-line-mouse2-map + frames-on-display-list + make-mode-line-mouse-map rmail-select-summary rmail-summary-exists rmail-update-summary + rmail-msg-is-pruned rmail-msg-restore-non-pruned-header sc-cite-regexp set-font-family set-font-size temp-directory string-as-multibyte tool-bar-add-item tool-bar-add-item-from-menu + unix-sync url-view-url vcard-pretty-print url-insert-file-contents w3-coding-system-for-mime-charset w3-prepare-buffer w3-region + w3m-charset-to-coding-system w3m-region widget-make-intangible x-defined-colors)) (maybe-bind '(adaptive-fill-first-line-regexp adaptive-fill-regexp babel-history babel-translations default-enable-multibyte-characters + enable-multibyte-characters display-time-mail-function imap-password mail-mode-hook + filladapt-mode mc-pgp-always-sign + gnus-message-group-art + gpg-unabbrev-trust-alist nnoo-definition-alist url-current-callback-func url-be-asynchronous url-current-callback-data url-working-buffer url-current-mime-headers w3-meta-charset-content-type-regexp - w3-meta-content-type-charset-regexp)) + rmail-enable-mime-composing + rmail-insert-mime-forwarded-message-function + w3-meta-content-type-charset-regexp + w3m-cid-retrieve-function-alist w3m-current-buffer + w3m-meta-content-type-charset-regexp w3m-mode-map + url-package-version url-package-name)) (if (featurep 'xemacs) (progn @@ -57,13 +79,16 @@ make-overlay mouse-minibuffer-check mouse-movement-p mouse-scroll-subr overlay-buffer overlay-end overlay-get overlay-lists overlay-put + overlays-in overlay-start posn-point posn-window read-event read-event run-with-idle-timer set-buffer-multibyte set-char-table-range set-face-stipple set-frame-face-alist track-mouse url-retrieve w3-form-encode-xwfu window-at window-edges x-color-values x-popup-menu browse-url - frame-char-height frame-char-width)) + frame-char-height frame-char-width + url-generic-parse-url xml-parse-region + make-network-process)) (maybe-bind '(buffer-display-table buffer-file-coding-system font-lock-defaults global-face-data gnus-article-x-face-too-ugly @@ -79,7 +104,7 @@ enable-multibyte-characters help-echo-owns-message)) (maybe-fbind '(Info-goto-node add-submenu annotation-glyph annotationp babel-as-string - button-press-event-p char-int characterp color-instance-name + button-press-event-p characterp color-instance-name color-instance-rgb-components color-name delete-annotation device-class device-on-window-system-p device-type display-error event-glyph event-object event-point @@ -93,28 +118,43 @@ set-face-doc-string set-glyph-image set-glyph-property specifier-instance url-generic-parse-url valid-image-instantiator-format-p w3-do-setup - window-pixel-height window-pixel-width))) + window-pixel-height window-pixel-width + xml-parse-region make-network-process))) ;; T-gnus. -(if (featurep 'xemacs) - (progn - (maybe-fbind '(propertize)) - (maybe-bind '(mh-lib-progs))) - ;; FSFmacs - (maybe-fbind '(charsetp - function-max-args propertize smiley-encode-buffer)) - (if (boundp 'MULE) - (progn - (maybe-fbind '(coding-system-get - compose-mail - file-name-extension find-coding-systems-region - get-charset-property shell-command-to-string)) - (maybe-bind '(mh-lib-progs))))) +(let ((functions + (cond + ((featurep 'xemacs) + nil) + ((>= emacs-major-version 21) + '(function-max-args smiley-encode-buffer)) + ((boundp 'MULE) + '(coding-system-get + coding-system-to-mime-charset compose-mail file-name-extension + find-coding-systems-for-charsets find-coding-systems-region + function-max-args get-charset-property smiley-encode-buffer)) + (t + '(function-max-args smiley-encode-buffer)))) + (common-fns + nil) + (variables + (cond + ((featurep 'xemacs) + nil) + ((>= emacs-major-version 21) + nil) + ((boundp 'MULE) + nil) + (t + nil))) + (common-vars + '(navi2ch-mona-font))) + (maybe-fbind functions) + (maybe-fbind common-fns) + (maybe-bind variables) + (maybe-bind common-vars)) (defun nnkiboze-score-file (a) ) -;; This is just to shut up the byte-compiler. -(defalias 'nndraft-request-group 'ignore) - (provide 'lpath)