• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/mh-e/

Lines Matching +defs:function +defs:list

44 If CHAR is not present in STRING then return nil. The function is
93 (defun mh-mapc (function list)
95 (while list
96 (funcall function (car list))
97 (setq list (cdr list))))
105 PICK-EXPR is a list of strings. Return nil if PICK-EXPR is nil."
113 (setq quoted-pick-expr (append quoted-pick-expr (list string)))))
153 (list
173 This function sets `mh-user-path' from your \"Path:\" MH profile
265 (add-to-list 'mh-help-messages (cons major-mode messages))
274 This is a list of one or more strings which are concatenated together
281 (function
306 (defun mh-coalesce-msg-list (messages)
307 "Given a list of MESSAGES, return a list of message number ranges.
308 This is the inverse of `mh-read-msg-list', which expands ranges.
310 function to avoid exceeding system command line argument limits."
363 (add-to-list 'debug-ignored-errors "^Cursor not pointing to message$")
391 names and the function is called when OUTPUT is available."
418 (push (list child1) cache-entry)
466 ;; XXX: Purge empty strings from the list that split-string
469 ;; code it is assumed that the components list has no empty
507 (defun mh-folder-list (folder)
509 FOLDER may have a + prefix. Returns a list of strings without the
514 (mh-folder-list nil)
516 (mh-folder-list \"+lists\")
522 (let ((folder-list))
525 ;; folder to the folder-list and adding a slash to it.
531 ;; Add provided folder to list, unless all folders are asked for.
534 (setq folder-list (list folder))
537 (setq folder-list
538 (append folder-list
540 (mh-folder-list (concat folder (car f)))
541 (list (concat folder (car f)))))))
542 folder-list))
547 The function avoids running folders unnecessarily by caching the
565 ;; FIXME: This function does not do well if FOLDER does not exist. It
570 ;; function could protect itself by using a temporary context.
577 (let ((arg-list `(,(expand-file-name "folders" mh-progs)
579 ,@(if (stringp folder) (list folder) ())))
588 (apply #'call-process arg-list)
680 `mh-folder-completion-function'. That function can have exactly
698 (defun mh-folder-completion-function (name predicate flag)
701 non-nil is a function that is used to filter the possible
755 (completing-read prompt 'mh-folder-completion-function nil nil nil
768 function will accept the folder +, which means all folders when
881 messages, where the buffer has been narrowed. This function works
953 (interactive (list nil))