From: David PONCE <david.ponce@wanadoo.fr>
Cc: emacs-devel@gnu.org
Subject: Re: [Stephen.Berman@gmx.net: Recentf and gzipped elisp source files]
Date: Thu, 24 Nov 2005 11:01:51 +0100 (CET) [thread overview]
Message-ID: <10324035.1132826511689.JavaMail.www@wwinf1615> (raw)
Hi,
Richard M. Stallman wrote:
> Please DTRT and ack.
>
> ------- Start of forwarded message -------
[...]
> Since the change by which Emacs lisp source files are automatically
> gzipped if possible, these are not listed in the recentf menu under
> the entry "emacs-lisp" when recentf-menu-filter is set to
> recentf-arrange-by-mode, although such files are visited in
> emacs-lisp-mode; rather, they are listed under the entry "others".
[...]
Please, could you try the patch below. It fixes the problem for me.
David
2005-11-24 David Ponce <david@dponce.com>
* recentf.el (recentf-arrange-by-rule): Handle a special
`auto-mode-alist'-like "strip suffix" rule.
(recentf-build-mode-rules): Handle second level auto-mode entries.
Index: recentf.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/recentf.el,v
retrieving revision 1.48
diff -c -r1.48 recentf.el
*** recentf.el 14 Oct 2005 09:04:38 -0000 1.48
--- recentf.el 24 Nov 2005 09:44:59 -0000
***************
*** 813,826 ****
Arrange them in sub-menus following rules in `recentf-arrange-rules'."
(if (not recentf-arrange-rules)
l
! (let ((menus (mapcar #'(lambda (r) (list (car r)))
! recentf-arrange-rules))
! menu others min file rules elts count)
(dolist (elt l)
(setq file (recentf-menu-element-value elt)
rules recentf-arrange-rules
elts menus
menu nil)
(while (and (not menu) rules)
(when (recentf-match-rule-p (cdar rules) file)
(setq menu (car elts))
--- 813,832 ----
Arrange them in sub-menus following rules in `recentf-arrange-rules'."
(if (not recentf-arrange-rules)
l
! (let* ((strip (assq t recentf-arrange-rules))
! (menus (mapcar #'(lambda (r) (list (car r)))
! (remq strip recentf-arrange-rules)))
! menu others min file rules elts count)
! ;; Group menu items in the sub-menus defined in rules.
(dolist (elt l)
(setq file (recentf-menu-element-value elt)
rules recentf-arrange-rules
elts menus
menu nil)
+ ;; Apply the strip suffix rule.
+ (while (recentf-match-rule-p (cdr strip) file)
+ (setq file (substring file 0 (match-beginning 0))))
+ ;; Search in which group to put the menu item.
(while (and (not menu) rules)
(when (recentf-match-rule-p (cdar rules) file)
(setq menu (car elts))
***************
*** 828,836 ****
menu (cons elt (recentf-menu-element-value menu))))
(setq rules (cdr rules)
elts (cdr elts)))
(unless menu
(push elt others)))
!
(setq l nil
min (if (natnump recentf-arrange-by-rules-min-items)
recentf-arrange-by-rules-min-items 0))
--- 834,844 ----
menu (cons elt (recentf-menu-element-value menu))))
(setq rules (cdr rules)
elts (cdr elts)))
+ ;; Put unmatched menu-items in an "other" bin.
(unless menu
(push elt others)))
! ;; Setup the sub-menus from the groups of menu-items. Count
! ;; sub-menu elements, and apply sub-filter to menu-items.
(setq l nil
min (if (natnump recentf-arrange-by-rules-min-items)
recentf-arrange-by-rules-min-items 0))
***************
*** 845,851 ****
menu (recentf-apply-menu-filter
recentf-arrange-by-rule-subfilter (nreverse elts)))
(push menu l))))
!
(if (and (stringp recentf-arrange-by-rule-others) others)
(nreverse
(cons
--- 853,859 ----
menu (recentf-apply-menu-filter
recentf-arrange-by-rule-subfilter (nreverse elts)))
(push menu l))))
! ;; Add items in the "other" bin.
(if (and (stringp recentf-arrange-by-rule-others) others)
(nreverse
(cons
***************
*** 857,864 ****
(nconc
(nreverse l)
(recentf-apply-menu-filter
! recentf-arrange-by-rule-subfilter (nreverse others)))))
! ))
\f
;;; Predefined rule based menu filters
;;
--- 865,871 ----
(nconc
(nreverse l)
(recentf-apply-menu-filter
! recentf-arrange-by-rule-subfilter (nreverse others)))))))
\f
;;; Predefined rule based menu filters
;;
***************
*** 870,881 ****
(dolist (mode auto-mode-alist)
(setq regexp (car mode)
mode (cdr mode))
! (when (symbolp mode)
! (setq rule-name (symbol-name mode))
! (if (string-match "\\(.*\\)-mode$" rule-name)
! (setq rule-name (match-string 1 rule-name)))
! (setq rule-name (concat rule-name " (%d)")
! rule (assoc rule-name rules))
(if rule
(setcdr rule (cons regexp (cdr rule)))
(push (list rule-name regexp) rules))))
--- 877,896 ----
(dolist (mode auto-mode-alist)
(setq regexp (car mode)
mode (cdr mode))
! (when mode
! (cond
! ;; Build a special "strip suffix" rule from entries of the
! ;; form (REGEXP FUNCTION NON-NIL). Notice that FUNCTION is
! ;; ignored by the menu filter. So in some corner cases a
! ;; wrong mode could be guessed.
! ((and (consp mode) (cadr mode))
! (setq rule-name t))
! ((and mode (symbolp mode))
! (setq rule-name (symbol-name mode))
! (if (string-match "\\(.*\\)-mode$" rule-name)
! (setq rule-name (match-string 1 rule-name)))
! (setq rule-name (concat rule-name " (%d)"))))
! (setq rule (assoc rule-name rules))
(if rule
(setcdr rule (cons regexp (cdr rule)))
(push (list rule-name regexp) rules))))
next reply other threads:[~2005-11-24 10:01 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-11-24 10:01 David PONCE [this message]
-- strict thread matches above, loose matches on Subject: below --
2005-11-24 12:55 [Stephen.Berman@gmx.net: Recentf and gzipped elisp source files] David PONCE
2005-11-24 22:46 ` Stephen Berman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=10324035.1132826511689.JavaMail.www@wwinf1615 \
--to=david.ponce@wanadoo.fr \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).