2006-04-17 18:26:22 +00:00
|
|
|
;;; gmm-utils.el --- Utility functions for Gnus, Message and MML
|
|
|
|
|
2016-01-01 01:16:19 -08:00
|
|
|
;; Copyright (C) 2006-2016 Free Software Foundation, Inc.
|
2006-04-17 18:26:22 +00:00
|
|
|
|
|
|
|
;; Author: Reiner Steib <reiner.steib@gmx.de>
|
|
|
|
;; Keywords: news
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 03:56:49 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2006-04-17 18:26:22 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 03:56:49 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2006-04-17 18:26:22 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2008-05-06 03:56:49 +00:00
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2006-04-17 18:26:22 +00:00
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 03:56:49 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2006-04-17 18:26:22 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; This library provides self-contained utility functions. The functions are
|
|
|
|
;; used in Gnus, Message and MML, but within this library there are no
|
2007-03-31 13:57:00 +00:00
|
|
|
;; dependencies on Gnus, Message, or MML.
|
2006-04-17 18:26:22 +00:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(defgroup gmm nil
|
2008-05-02 09:48:29 +00:00
|
|
|
"Utility functions for Gnus, Message and MML."
|
2006-04-17 18:26:22 +00:00
|
|
|
:prefix "gmm-"
|
2006-10-03 04:58:52 +00:00
|
|
|
:version "22.1" ;; Gnus 5.10.9
|
2006-04-17 18:26:22 +00:00
|
|
|
:group 'lisp)
|
|
|
|
|
|
|
|
;; Helper functions from `gnus-utils.el': gmm-verbose, gmm-message, gmm-error
|
|
|
|
|
|
|
|
(defcustom gmm-verbose 7
|
|
|
|
"Integer that says how verbose gmm should be.
|
|
|
|
The higher the number, the more messages will flash to say what
|
2008-05-02 09:48:29 +00:00
|
|
|
it did. At zero, it will be totally mute; at five, it will
|
2006-04-17 18:26:22 +00:00
|
|
|
display most important messages; and at ten, it will keep on
|
|
|
|
jabbering all the time."
|
|
|
|
:type 'integer
|
|
|
|
:group 'gmm)
|
|
|
|
|
2007-10-28 09:18:39 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun gmm-regexp-concat (regexp)
|
|
|
|
"Potentially concat a list of regexps into a single one.
|
|
|
|
The concatenation is done with logical ORs."
|
|
|
|
(cond ((null regexp)
|
|
|
|
nil)
|
|
|
|
((stringp regexp)
|
|
|
|
regexp)
|
|
|
|
((listp regexp)
|
|
|
|
(mapconcat (lambda (elt) (concat "\\(" elt "\\)"))
|
|
|
|
regexp
|
|
|
|
"\\|"))))
|
|
|
|
|
2006-04-17 18:26:22 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun gmm-message (level &rest args)
|
|
|
|
"If LEVEL is lower than `gmm-verbose' print ARGS using `message'.
|
|
|
|
|
|
|
|
Guideline for numbers:
|
2008-05-02 09:48:29 +00:00
|
|
|
1 - error messages
|
|
|
|
3 - non-serious error messages
|
|
|
|
5 - messages for things that take a long time
|
|
|
|
7 - not very important messages on stuff
|
|
|
|
9 - messages inside loops."
|
2006-04-17 18:26:22 +00:00
|
|
|
(if (<= level gmm-verbose)
|
|
|
|
(apply 'message args)
|
|
|
|
;; We have to do this format thingy here even if the result isn't
|
|
|
|
;; shown - the return value has to be the same as the return value
|
|
|
|
;; from `message'.
|
|
|
|
(apply 'format args)))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun gmm-error (level &rest args)
|
|
|
|
"Beep an error if LEVEL is equal to or less than `gmm-verbose'.
|
|
|
|
ARGS are passed to `message'."
|
|
|
|
(when (<= (floor level) gmm-verbose)
|
|
|
|
(apply 'message args)
|
|
|
|
(ding)
|
|
|
|
(let (duration)
|
|
|
|
(when (and (floatp level)
|
|
|
|
(not (zerop (setq duration (* 10 (- level (floor level)))))))
|
|
|
|
(sit-for duration))))
|
|
|
|
nil)
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun gmm-widget-p (symbol)
|
2007-08-08 07:34:30 +00:00
|
|
|
"Non-nil if SYMBOL is a widget."
|
2006-04-17 18:26:22 +00:00
|
|
|
(get symbol 'widget-type))
|
|
|
|
|
Stop message.el from loading about 40 libraries it doesn't always need.
The general approach is to autoload rather than require, and to
require in the specific functions rather than the file. (Bug#5642)
* url/url.el: Move mailcap require earlier in the file.
* gnus/gmm-utils.el: Don't require wid-edit.
(widget-create-child-value, widget-convert, widget-default-get):
Autoload.
* gnus/gnus-util.el: Don't require time-date, netrc.
(message-fetch-field, gnus-group-name-decode): Declare rather than
autoloading.
(gnus-fetch-field): Require message.
(gnus-decode-newsgroups): Require gnus-group.
* gnus/ietf-drums.el: Don't require time-date.
* gnus/message.el: Don't require hashcash, canlock, ecomplete.
Do require mail-utils. Require nnheader only when compiling.
(smtpmail-default-smtp-server): Remove declaration.
(message-send-mail-function): Check smtpmail-default-smtp-server
is bound rather than requiring smtpmail.
(message-auto-save-directory, message-insert-signature): Use
expand-file-name rather than nnheader-concat.
(nnheader-insert-file-contents): Autoload.
(hashcash-wait-async): Declare.
(message-send-mail): Only call gnus-setup-posting-charset if
gnus-group-posting-charset-alist is bound. Require hashcash if needed.
(message-send-mail-with-sendmail): Require sendmail.
(canlock-password, canlock-password-for-verify): Declare.
(message-canlock-password): Require canlock.
(nnheader-get-report): Autoload.
(gnus-setup-posting-charset): Declare.
(message-send-news): Require gnus-msg.
(message-make-references, message-make-in-reply-to): Use mail-header-id
rather than the alias mail-header-message-id.
(ecomplete-add-item, ecomplete-save): Declare.
(message-put-addresses-in-ecomplete): Require ecomplete.
(ecomplete-display-matches): Autoload.
* gnus/mm-decode.el: Don't require mailcap, gnus-util.
(gnus-map-function, gnus-replace-in-string, gnus-read-shell-command)
(message-fetch-field, mailcap-parse-mailcaps, mailcap-mime-info):
Autoload.
(mailcap-mime-extensions): Declare.
* gnus/mm-encode.el: Don't require mailcap.
(mailcap-extension-to-mime): Autoload.
* gnus/mml-sec.el: Don't require password-cache.
* gnus/mml.el (gnus-setup-posting-charset): Declare rather than autoload.
(mailcap-parse-mimetypes, mailcap-mime-types): Declare.
(mml-minibuffer-read-type): Require mailcap.
(mml-preview): Require gnus-msg.
* gnus/mml1991.el: Require password-cache.
(password-cache-expiry): Remove declaration.
* gnus/mml2015.el: Require password-cache.
(password-cache-expiry): Remove declaration.
* gnus/nneething.el (mailcap): Require mailcap.
* gnus/nnheader.el: (declare-function): Add compatibility stub.
(message-remove-header): Declare rather than autoload.
(nnheader-replace-header): Require message.
* gnus/nnimap.el (declare-function): Add compatibility stub.
(netrc-parse, netrc-machine-user-or-password): Declare.
(nnimap-open-connection): Require netrc.
* gnus/nntp.el (declare-function): Add compatibility stub.
(netrc-parse, netrc-machine, netrc-get): Declare.
(nntp-send-authinfo): Require netrc.
* gnus/rfc2047.el: Don't require qp.
(quoted-printable-encode-region, quoted-printable-decode-string):
Autoload.
* gnus/sieve-mode.el: Don't require easymenu.
(easy-menu-add-item): Autoload it.
* gnus/spam-stat.el (time-to-number-of-days): Autoload it.
* password-cache.el (password-cache, password-cache-expiry):
Autoload.
2010-03-18 19:55:37 -07:00
|
|
|
(autoload 'widget-create-child-value "wid-edit")
|
|
|
|
(autoload 'widget-convert "wid-edit")
|
|
|
|
(autoload 'widget-default-get "wid-edit")
|
|
|
|
|
2006-04-17 18:26:22 +00:00
|
|
|
;; Copy of the `nnmail-lazy' code from `nnmail.el':
|
|
|
|
(define-widget 'gmm-lazy 'default
|
2014-01-08 11:16:10 -08:00
|
|
|
"Base widget for recursive data structures.
|
2006-04-17 18:26:22 +00:00
|
|
|
|
2008-05-02 09:48:29 +00:00
|
|
|
This is a copy of the `lazy' widget in Emacs 22.1 provided for compatibility."
|
2006-04-17 18:26:22 +00:00
|
|
|
:format "%{%t%}: %v"
|
|
|
|
:convert-widget 'widget-value-convert-widget
|
|
|
|
:value-create (lambda (widget)
|
|
|
|
(let ((value (widget-get widget :value))
|
|
|
|
(type (widget-get widget :type)))
|
|
|
|
(widget-put widget :children
|
|
|
|
(list (widget-create-child-value
|
|
|
|
widget (widget-convert type) value)))))
|
|
|
|
:value-delete 'widget-children-value-delete
|
|
|
|
:value-get (lambda (widget)
|
|
|
|
(widget-value (car (widget-get widget :children))))
|
|
|
|
:value-inline (lambda (widget)
|
|
|
|
(widget-apply (car (widget-get widget :children))
|
|
|
|
:value-inline))
|
|
|
|
:default-get (lambda (widget)
|
|
|
|
(widget-default-get
|
|
|
|
(widget-convert (widget-get widget :type))))
|
|
|
|
:match (lambda (widget value)
|
|
|
|
(widget-apply (widget-convert (widget-get widget :type))
|
|
|
|
:match value))
|
|
|
|
:validate (lambda (widget)
|
|
|
|
(widget-apply (car (widget-get widget :children)) :validate)))
|
|
|
|
|
|
|
|
;; Note: The format of `gmm-tool-bar-item' may change if some future Emacs
|
|
|
|
;; version will provide customizable tool bar buttons using a different
|
|
|
|
;; interface.
|
|
|
|
|
|
|
|
;; TODO: Extend API so that the "Command" entry can be a function or a plist.
|
|
|
|
;; In case of a list it should have the format...
|
|
|
|
;;
|
|
|
|
;; (:none command-without-modifier
|
|
|
|
;; :shift command-with-shift-pressed
|
|
|
|
;; :control command-with-ctrl-pressed
|
|
|
|
;; :control-shift command-with-control-and-shift-pressed
|
|
|
|
;; ;; mouse-2 and mouse-3 can't be used in Emacs yet.
|
|
|
|
;; :mouse-2 command-on-mouse-2-press
|
|
|
|
;; :mouse-3 command-on-mouse-3-press) ;; typically a menu of related commands
|
|
|
|
;;
|
2011-11-14 23:55:13 -08:00
|
|
|
;; Combinations of mouse-[23] plus shift and/or control might be overkill.
|
2006-04-17 18:26:22 +00:00
|
|
|
;;
|
|
|
|
;; Then use (plist-get rs-command :none), (plist-get rs-command :shift)
|
|
|
|
|
|
|
|
(define-widget 'gmm-tool-bar-item (if (gmm-widget-p 'lazy) 'lazy 'gmm-lazy)
|
|
|
|
"Tool bar list item."
|
|
|
|
:tag "Tool bar item"
|
|
|
|
:type '(choice
|
|
|
|
(list :tag "Command and Icon"
|
|
|
|
(function :tag "Command")
|
|
|
|
(string :tag "Icon file")
|
|
|
|
(choice
|
|
|
|
(const :tag "Default map" nil)
|
|
|
|
;; Note: Usually we need non-nil attributes if map is t.
|
|
|
|
(const :tag "No menu" t)
|
|
|
|
(sexp :tag "Other map"))
|
|
|
|
(plist :inline t :tag "Properties"))
|
|
|
|
(list :tag "Separator"
|
|
|
|
(const :tag "No command" gmm-ignore)
|
|
|
|
(string :tag "Icon file")
|
|
|
|
(const :tag "No map")
|
|
|
|
(plist :inline t :tag "Properties"))))
|
|
|
|
|
|
|
|
(define-widget 'gmm-tool-bar-zap-list (if (gmm-widget-p 'lazy) 'lazy 'gmm-lazy)
|
|
|
|
"Tool bar zap list."
|
|
|
|
:tag "Tool bar zap list"
|
|
|
|
:type '(choice (const :tag "Zap all" t)
|
|
|
|
(const :tag "Keep all" nil)
|
|
|
|
(list
|
|
|
|
;; :value
|
|
|
|
;; Work around (bug in customize?), see
|
|
|
|
;; <news:v9is48jrj1.fsf@marauder.physik.uni-ulm.de>
|
|
|
|
;; (new-file open-file dired kill-buffer write-file
|
|
|
|
;; print-buffer customize help)
|
|
|
|
(set :inline t
|
|
|
|
(const new-file)
|
|
|
|
(const open-file)
|
|
|
|
(const dired)
|
|
|
|
(const kill-buffer)
|
|
|
|
(const save-buffer)
|
|
|
|
(const write-file)
|
|
|
|
(const undo)
|
|
|
|
(const cut)
|
|
|
|
(const copy)
|
|
|
|
(const paste)
|
|
|
|
(const search-forward)
|
|
|
|
(const print-buffer)
|
|
|
|
(const customize)
|
|
|
|
(const help))
|
|
|
|
(repeat :inline t
|
|
|
|
:tag "Other"
|
|
|
|
(symbol :tag "Icon item")))))
|
|
|
|
|
|
|
|
(defcustom gmm-tool-bar-style
|
|
|
|
(if (and (boundp 'tool-bar-mode)
|
|
|
|
tool-bar-mode
|
2016-02-13 16:40:17 +11:00
|
|
|
(memq (display-visual-class)
|
|
|
|
(list 'static-gray 'gray-scale
|
|
|
|
'static-color 'pseudo-color)))
|
2006-04-17 18:26:22 +00:00
|
|
|
'gnome
|
|
|
|
'retro)
|
2011-11-24 23:14:48 -08:00
|
|
|
"Preferred tool bar style."
|
2007-01-09 05:40:39 +00:00
|
|
|
:type '(choice (const :tag "GNOME style" gnome)
|
|
|
|
(const :tag "Retro look" retro))
|
2006-04-17 18:26:22 +00:00
|
|
|
:group 'gmm)
|
|
|
|
|
|
|
|
(defvar tool-bar-map)
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun gmm-tool-bar-from-list (icon-list zap-list default-map)
|
|
|
|
"Make a tool bar from ICON-LIST.
|
|
|
|
|
|
|
|
Within each entry of ICON-LIST, the first element is a menu
|
|
|
|
command, the second element is an icon file name and the third
|
|
|
|
element is a test function. You can use \\[describe-key]
|
|
|
|
<menu-entry> to find out the name of a menu command. The fourth
|
2007-03-31 13:57:00 +00:00
|
|
|
and all following elements are passed as the PROPS argument to the
|
2006-04-17 18:26:22 +00:00
|
|
|
function `tool-bar-local-item'.
|
|
|
|
|
|
|
|
If ZAP-LIST is a list, remove those item from the default
|
|
|
|
`tool-bar-map'. If it is t, start with a new sparse map. You
|
|
|
|
can use \\[describe-key] <icon> to find out the name of an icon
|
|
|
|
item. When \\[describe-key] <icon> shows \"<tool-bar> <new-file>
|
|
|
|
runs the command find-file\", then use `new-file' in ZAP-LIST.
|
|
|
|
|
|
|
|
DEFAULT-MAP specifies the default key map for ICON-LIST."
|
|
|
|
(let (;; For Emacs 21, we must let-bind `tool-bar-map'. In Emacs 22, we
|
|
|
|
;; could use some other local variable.
|
|
|
|
(tool-bar-map (if (eq zap-list t)
|
|
|
|
(make-sparse-keymap)
|
|
|
|
(copy-keymap tool-bar-map))))
|
|
|
|
(when (listp zap-list)
|
|
|
|
;; Zap some items which aren't relevant for this mode and take up space.
|
|
|
|
(dolist (key zap-list)
|
|
|
|
(define-key tool-bar-map (vector key) nil)))
|
|
|
|
(mapc (lambda (el)
|
|
|
|
(let ((command (car el))
|
|
|
|
(icon (nth 1 el))
|
|
|
|
(fmap (or (nth 2 el) default-map))
|
|
|
|
(props (cdr (cdr (cdr el)))) )
|
|
|
|
;; command may stem from different from-maps:
|
|
|
|
(cond ((eq command 'gmm-ignore)
|
|
|
|
;; The dummy `gmm-ignore', see `gmm-tool-bar-item'
|
|
|
|
;; widget. Suppress tooltip by adding `:enable nil'.
|
|
|
|
(if (fboundp 'tool-bar-local-item)
|
|
|
|
(apply 'tool-bar-local-item icon nil nil
|
|
|
|
tool-bar-map :enable nil props)
|
|
|
|
;; (tool-bar-local-item ICON DEF KEY MAP &rest PROPS)
|
|
|
|
;; (tool-bar-add-item ICON DEF KEY &rest PROPS)
|
|
|
|
(apply 'tool-bar-add-item icon nil nil :enable nil props)))
|
|
|
|
((equal fmap t) ;; Not a menu command
|
2010-09-24 07:25:37 +00:00
|
|
|
(apply 'tool-bar-local-item
|
|
|
|
icon command
|
|
|
|
(intern icon) ;; reuse icon or fmap here?
|
|
|
|
tool-bar-map props))
|
2006-04-17 18:26:22 +00:00
|
|
|
(t ;; A menu command
|
2010-09-24 07:25:37 +00:00
|
|
|
(apply 'tool-bar-local-item-from-menu
|
|
|
|
;; (apply 'tool-bar-local-item icon def key
|
|
|
|
;; tool-bar-map props)
|
|
|
|
command icon tool-bar-map (symbol-value fmap)
|
|
|
|
props)))
|
2006-04-17 18:26:22 +00:00
|
|
|
t))
|
|
|
|
(if (symbolp icon-list)
|
|
|
|
(eval icon-list)
|
|
|
|
icon-list))
|
|
|
|
tool-bar-map))
|
|
|
|
|
2006-05-18 17:50:53 +00:00
|
|
|
(defmacro defun-gmm (name function arg-list &rest body)
|
2006-04-17 18:26:22 +00:00
|
|
|
"Create function NAME.
|
|
|
|
If FUNCTION exists, then NAME becomes an alias for FUNCTION.
|
|
|
|
Otherwise, create function NAME with ARG-LIST and BODY."
|
|
|
|
(let ((defined-p (fboundp function)))
|
|
|
|
(if defined-p
|
|
|
|
`(defalias ',name ',function)
|
|
|
|
`(defun ,name ,arg-list ,@body))))
|
|
|
|
|
2006-05-18 17:50:53 +00:00
|
|
|
(defun-gmm gmm-image-search-load-path
|
2006-04-17 18:26:22 +00:00
|
|
|
image-search-load-path (file &optional path)
|
|
|
|
"Emacs 21 and XEmacs don't have `image-search-load-path'.
|
|
|
|
This function returns nil on those systems."
|
|
|
|
nil)
|
|
|
|
|
2006-05-18 17:50:53 +00:00
|
|
|
;; Cf. `mh-image-load-path-for-library' in `mh-compat.el'.
|
2006-04-17 18:26:22 +00:00
|
|
|
|
2006-05-18 17:50:53 +00:00
|
|
|
(defun-gmm gmm-image-load-path-for-library
|
|
|
|
image-load-path-for-library (library image &optional path no-error)
|
|
|
|
"Return a suitable search path for images used by LIBRARY.
|
2006-04-17 18:26:22 +00:00
|
|
|
|
2006-05-18 17:50:53 +00:00
|
|
|
It searches for IMAGE in `image-load-path' (excluding
|
2006-04-17 18:26:22 +00:00
|
|
|
\"`data-directory'/images\") and `load-path', followed by a path
|
|
|
|
suitable for LIBRARY, which includes \"../../etc/images\" and
|
|
|
|
\"../etc/images\" relative to the library file itself, and then
|
|
|
|
in \"`data-directory'/images\".
|
|
|
|
|
|
|
|
Then this function returns a list of directories which contains
|
|
|
|
first the directory in which IMAGE was found, followed by the
|
2008-05-02 09:48:29 +00:00
|
|
|
value of `load-path'. If PATH is given, it is used instead of
|
2006-04-17 18:26:22 +00:00
|
|
|
`load-path'.
|
|
|
|
|
|
|
|
If NO-ERROR is non-nil and a suitable path can't be found, don't
|
2008-05-02 09:48:29 +00:00
|
|
|
signal an error. Instead, return a list of directories as before,
|
2006-04-17 18:26:22 +00:00
|
|
|
except that nil appears in place of the image directory.
|
|
|
|
|
|
|
|
Here is an example that uses a common idiom to provide
|
|
|
|
compatibility with versions of Emacs that lack the variable
|
|
|
|
`image-load-path':
|
|
|
|
|
|
|
|
;; Shush compiler.
|
|
|
|
(defvar image-load-path)
|
|
|
|
|
|
|
|
(let* ((load-path (image-load-path-for-library \"mh-e\" \"mh-logo.xpm\"))
|
|
|
|
(image-load-path (cons (car load-path)
|
2015-09-03 15:31:12 -07:00
|
|
|
(when (boundp \\='image-load-path)
|
2006-04-17 18:26:22 +00:00
|
|
|
image-load-path))))
|
|
|
|
(mh-tool-bar-folder-buttons-init))"
|
|
|
|
(unless library (error "No library specified"))
|
|
|
|
(unless image (error "No image specified"))
|
|
|
|
(let (image-directory image-directory-load-path)
|
|
|
|
;; Check for images in image-load-path or load-path.
|
|
|
|
(let ((img image)
|
|
|
|
(dir (or
|
|
|
|
;; Images in image-load-path.
|
2016-02-10 14:56:30 +11:00
|
|
|
(image-search-load-path image)
|
2006-04-17 18:26:22 +00:00
|
|
|
;; Images in load-path.
|
|
|
|
(locate-library image)))
|
|
|
|
parent)
|
|
|
|
;; Since the image might be in a nested directory (for
|
|
|
|
;; example, mail/attach.pbm), adjust `image-directory'
|
|
|
|
;; accordingly.
|
|
|
|
(when dir
|
|
|
|
(setq dir (file-name-directory dir))
|
|
|
|
(while (setq parent (file-name-directory img))
|
|
|
|
(setq img (directory-file-name parent)
|
|
|
|
dir (expand-file-name "../" dir))))
|
|
|
|
(setq image-directory-load-path dir))
|
|
|
|
|
2012-02-28 00:17:21 -08:00
|
|
|
;; If `image-directory-load-path' isn't Emacs's image directory,
|
2008-05-02 09:48:29 +00:00
|
|
|
;; it's probably a user preference, so use it. Then use a
|
2006-04-17 18:26:22 +00:00
|
|
|
;; relative setting if possible; otherwise, use
|
|
|
|
;; `image-directory-load-path'.
|
|
|
|
(cond
|
|
|
|
;; User-modified image-load-path?
|
|
|
|
((and image-directory-load-path
|
|
|
|
(not (equal image-directory-load-path
|
|
|
|
(file-name-as-directory
|
|
|
|
(expand-file-name "images" data-directory)))))
|
|
|
|
(setq image-directory image-directory-load-path))
|
|
|
|
;; Try relative setting.
|
|
|
|
((let (library-name d1ei d2ei)
|
|
|
|
;; First, find library in the load-path.
|
|
|
|
(setq library-name (locate-library library))
|
|
|
|
(if (not library-name)
|
|
|
|
(error "Cannot find library %s in load-path" library))
|
|
|
|
;; And then set image-directory relative to that.
|
|
|
|
(setq
|
|
|
|
;; Go down 2 levels.
|
|
|
|
d2ei (file-name-as-directory
|
|
|
|
(expand-file-name
|
|
|
|
(concat (file-name-directory library-name) "../../etc/images")))
|
|
|
|
;; Go down 1 level.
|
|
|
|
d1ei (file-name-as-directory
|
|
|
|
(expand-file-name
|
|
|
|
(concat (file-name-directory library-name) "../etc/images"))))
|
|
|
|
(setq image-directory
|
|
|
|
;; Set it to nil if image is not found.
|
|
|
|
(cond ((file-exists-p (expand-file-name image d2ei)) d2ei)
|
|
|
|
((file-exists-p (expand-file-name image d1ei)) d1ei)))))
|
2012-02-28 00:17:21 -08:00
|
|
|
;; Use Emacs's image directory.
|
2006-04-17 18:26:22 +00:00
|
|
|
(image-directory-load-path
|
|
|
|
(setq image-directory image-directory-load-path))
|
|
|
|
(no-error
|
|
|
|
(message "Could not find image %s for library %s" image library))
|
|
|
|
(t
|
|
|
|
(error "Could not find image %s for library %s" image library)))
|
|
|
|
|
|
|
|
;; Return an augmented `path' or `load-path'.
|
|
|
|
(nconc (list image-directory)
|
|
|
|
(delete image-directory (copy-sequence (or path load-path))))))
|
|
|
|
|
|
|
|
(defun gmm-customize-mode (&optional mode)
|
|
|
|
"Customize customization group for MODE.
|
2008-05-02 09:48:29 +00:00
|
|
|
If mode is nil, use `major-mode' of the current buffer."
|
2006-04-17 18:26:22 +00:00
|
|
|
(interactive)
|
|
|
|
(customize-group
|
|
|
|
(or mode
|
|
|
|
(intern (let ((mode (symbol-name major-mode)))
|
|
|
|
(string-match "^\\(.+\\)-mode$" mode)
|
|
|
|
(match-string 1 mode))))))
|
|
|
|
|
2014-04-15 23:37:21 +00:00
|
|
|
(defun gmm-format-time-string (format-string &optional time tz)
|
|
|
|
"Use FORMAT-STRING to format the time TIME, or now if omitted.
|
|
|
|
The optional TZ specifies the time zone in a number of seconds; any
|
|
|
|
other non-nil value will be treated as 0. Note that both the format
|
|
|
|
specifiers `%Z' and `%z' will be replaced with a numeric form. "
|
|
|
|
;; FIXME: is there a smart way to replace %Z with a time zone name?
|
|
|
|
(if (and (numberp tz) (not (zerop tz)))
|
|
|
|
(let ((st 0)
|
|
|
|
(case-fold-search t)
|
|
|
|
ls nd rest)
|
|
|
|
(setq time (if time
|
|
|
|
(copy-sequence time)
|
|
|
|
(current-time)))
|
|
|
|
(if (>= (setq ls (- (cadr time) (car (current-time-zone)) (- tz))) 0)
|
|
|
|
(setcar (cdr time) ls)
|
|
|
|
(setcar (cdr time) (+ ls 65536))
|
|
|
|
(setcar time (1- (car time))))
|
|
|
|
(setq tz (format "%s%02d%02d"
|
|
|
|
(if (>= tz 0) "+" "-")
|
|
|
|
(/ (abs tz) 3600)
|
|
|
|
(/ (% (abs tz) 3600) 60)))
|
|
|
|
(while (string-match "%+z" format-string st)
|
|
|
|
(if (zerop (% (- (setq nd (match-end 0)) (match-beginning 0)) 2))
|
|
|
|
(progn
|
|
|
|
(push (substring format-string st (- nd 2)) rest)
|
|
|
|
(push tz rest))
|
|
|
|
(push (substring format-string st nd) rest))
|
|
|
|
(setq st nd))
|
|
|
|
(push (substring format-string st) rest)
|
|
|
|
(format-time-string (apply 'concat (nreverse rest)) time))
|
|
|
|
(format-time-string format-string time tz)))
|
|
|
|
|
2006-04-17 18:26:22 +00:00
|
|
|
(provide 'gmm-utils)
|
|
|
|
|
|
|
|
;;; gmm-utils.el ends here
|