1 ;;; gnus-spec.el --- format spec functions for Gnus
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007 Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
30 (eval-when-compile (require 'cl
))
31 (defvar gnus-newsrc-file-version
)
35 (defcustom gnus-use-correct-string-widths
(featurep 'xemacs
)
36 "*If non-nil, use correct functions for dealing with wide characters."
41 (defcustom gnus-make-format-preserve-properties
(featurep 'xemacs
)
42 "*If non-nil, use a replacement `format' function which preserves
43 text properties. This is only needed on XEmacs, as FSF Emacs does this anyway."
48 ;;; Internal variables.
50 (defvar gnus-summary-mark-positions nil
)
51 (defvar gnus-group-mark-positions nil
)
52 (defvar gnus-group-indentation
"")
54 ;; Format specs. The chunks below are the machine-generated forms
55 ;; that are to be evaled as the result of the default format strings.
56 ;; We write them in here to get them byte-compiled. That way the
57 ;; default actions will be quite fast, while still retaining the full
58 ;; flexibility of the user-defined format specs.
60 ;; First we have lots of dummy defvars to let the compiler know these
61 ;; are really dynamic variables.
63 (defvar gnus-tmp-unread
)
64 (defvar gnus-tmp-replied
)
65 (defvar gnus-tmp-score-char
)
66 (defvar gnus-tmp-indentation
)
67 (defvar gnus-tmp-opening-bracket
)
68 (defvar gnus-tmp-lines
)
69 (defvar gnus-tmp-name
)
70 (defvar gnus-tmp-closing-bracket
)
71 (defvar gnus-tmp-subject-or-nil
)
72 (defvar gnus-tmp-subject
)
73 (defvar gnus-tmp-marked
)
74 (defvar gnus-tmp-marked-mark
)
75 (defvar gnus-tmp-subscribed
)
76 (defvar gnus-tmp-process-marked
)
77 (defvar gnus-tmp-number-of-unread
)
78 (defvar gnus-tmp-group-name
)
79 (defvar gnus-tmp-group
)
80 (defvar gnus-tmp-article-number
)
81 (defvar gnus-tmp-unread-and-unselected
)
82 (defvar gnus-tmp-news-method
)
83 (defvar gnus-tmp-news-server
)
84 (defvar gnus-tmp-article-number
)
85 (defvar gnus-mouse-face
)
86 (defvar gnus-mouse-face-prop
)
87 (defvar gnus-tmp-header
)
88 (defvar gnus-tmp-from
)
90 (defun gnus-summary-line-format-spec ()
91 (insert gnus-tmp-unread gnus-tmp-replied
92 gnus-tmp-score-char gnus-tmp-indentation
)
93 (gnus-put-text-property
97 (format "%c%4s: %-23s%c" gnus-tmp-opening-bracket gnus-tmp-lines
100 (gnus-summary-from-or-to-or-newsgroups
101 gnus-tmp-header gnus-tmp-from
))))
102 (if (> (length val
) 23)
105 gnus-tmp-closing-bracket
))
107 gnus-mouse-face-prop gnus-mouse-face
)
108 (insert " " gnus-tmp-subject-or-nil
"\n"))
110 (defvar gnus-summary-line-format-spec
111 (gnus-byte-code 'gnus-summary-line-format-spec
))
113 (defun gnus-summary-dummy-line-format-spec ()
115 (gnus-put-text-property
120 gnus-mouse-face-prop gnus-mouse-face
)
121 (insert " " gnus-tmp-subject
"\n"))
123 (defvar gnus-summary-dummy-line-format-spec
124 (gnus-byte-code 'gnus-summary-dummy-line-format-spec
))
126 (defun gnus-group-line-format-spec ()
127 (insert gnus-tmp-marked-mark gnus-tmp-subscribed
128 gnus-tmp-process-marked
129 gnus-group-indentation
130 (format "%5s: " gnus-tmp-number-of-unread
))
131 (gnus-put-text-property
134 (insert gnus-tmp-group
"\n")
136 gnus-mouse-face-prop gnus-mouse-face
))
137 (defvar gnus-group-line-format-spec
138 (gnus-byte-code 'gnus-group-line-format-spec
))
140 (defvar gnus-format-specs
141 `((version .
,emacs-version
)
142 (gnus-version .
,(gnus-continuum-version))
143 (group "%M\%S\%p\%P\%5y: %(%g%)%l\n" ,gnus-group-line-format-spec
)
144 (summary-dummy "* %(: :%) %S\n"
145 ,gnus-summary-dummy-line-format-spec
)
146 (summary "%U%R%z%I%(%[%4L: %-23,23f%]%) %s\n"
147 ,gnus-summary-line-format-spec
))
148 "Alist of format specs.")
150 (defvar gnus-default-format-specs gnus-format-specs
)
152 (defvar gnus-article-mode-line-format-spec nil
)
153 (defvar gnus-summary-mode-line-format-spec nil
)
154 (defvar gnus-group-mode-line-format-spec nil
)
156 ;;; Phew. All that gruft is over with, fortunately.
159 (defun gnus-update-format (var)
160 "Update the format specification near point."
165 ;; Find the end of the current word.
166 (re-search-forward "[ \t\n]" nil t
)
168 (when (re-search-backward "\\(gnus-[-a-z]+-line-format\\)" nil t
)
170 (let* ((type (intern (progn (string-match "gnus-\\([-a-z]+\\)-line" var
)
171 (match-string 1 var
))))
172 (entry (assq type gnus-format-specs
))
175 (setq gnus-format-specs
(delq entry gnus-format-specs
)))
177 (intern (format "%s-spec" var
))
178 (gnus-parse-format (setq value
(symbol-value (intern var
)))
179 (symbol-value (intern (format "%s-alist" var
)))
180 (not (string-match "mode" var
))))
181 (setq spec
(symbol-value (intern (format "%s-spec" var
))))
182 (push (list type value spec
) gnus-format-specs
)
184 (pop-to-buffer "*Gnus Format*")
186 (lisp-interaction-mode)
187 (insert (gnus-pp-to-string spec
))))
189 (defun gnus-update-format-specifications (&optional force
&rest types
)
190 "Update all (necessary) format specifications.
191 Return a list of updated types."
192 ;; Make the indentation array.
193 ;; See whether all the stored info needs to be flushed.
195 (not gnus-newsrc-file-version
)
196 (not (equal (gnus-continuum-version)
197 (gnus-continuum-version gnus-newsrc-file-version
)))
198 (not (equal emacs-version
199 (cdr (assq 'version gnus-format-specs
)))))
200 (setq gnus-format-specs nil
))
201 ;; Flush the group format spec cache if it doesn't support decoded
203 (when (memq 'group types
)
204 (let ((spec (assq 'group gnus-format-specs
)))
205 (unless (string-match " gnus-tmp-decoded-group[ )]"
206 (gnus-prin1-to-string (nth 2 spec
)))
207 (setq gnus-format-specs
(delq spec gnus-format-specs
)))))
209 ;; Go through all the formats and see whether they need updating.
210 (let (new-format entry type val updated
)
211 (while (setq type
(pop types
))
212 ;; Jump to the proper buffer to find out the value of the
213 ;; variable, if possible. (It may be buffer-local.)
215 (let ((buffer (intern (format "gnus-%s-buffer" type
))))
216 (when (and (boundp buffer
)
217 (setq val
(symbol-value buffer
))
218 (gnus-buffer-exists-p val
))
220 (setq new-format
(symbol-value
221 (intern (format "gnus-%s-line-format" type
)))))
222 (setq entry
(cdr (assq type gnus-format-specs
)))
224 (equal (car entry
) new-format
))
225 ;; Use the old format.
226 (set (intern (format "gnus-%s-line-format-spec" type
))
228 ;; This is a new format.
230 (if (not (stringp new-format
))
231 ;; This is a function call or something.
233 ;; This is a "real" format.
237 (intern (format "gnus-%s-line-format-alist" type
)))
238 (not (string-match "mode$" (symbol-name type
))))))
239 ;; Enter the new format spec into the list.
242 (setcar (cdr entry
) val
)
243 (setcar entry new-format
))
244 (push (list type new-format val
) gnus-format-specs
))
245 (set (intern (format "gnus-%s-line-format-spec" type
)) val
)
246 (push type updated
))))
248 (unless (assq 'version gnus-format-specs
)
249 (push (cons 'version emacs-version
) gnus-format-specs
))
252 (defvar gnus-mouse-face-0
'highlight
)
253 (defvar gnus-mouse-face-1
'highlight
)
254 (defvar gnus-mouse-face-2
'highlight
)
255 (defvar gnus-mouse-face-3
'highlight
)
256 (defvar gnus-mouse-face-4
'highlight
)
258 (defun gnus-mouse-face-function (form type
)
259 `(gnus-put-text-property
260 (point) (progn ,@form
(point))
264 `(quote ,(symbol-value (intern (format "gnus-mouse-face-%d" type
)))))))
266 (defvar gnus-face-0
'bold
)
267 (defvar gnus-face-1
'italic
)
268 (defvar gnus-face-2
'bold-italic
)
269 (defvar gnus-face-3
'bold
)
270 (defvar gnus-face-4
'bold
)
272 (defun gnus-face-face-function (form type
)
273 `(gnus-add-text-properties
274 (point) (progn ,@form
(point))
275 '(gnus-face t face
,(symbol-value (intern (format "gnus-face-%d" type
))))))
277 (defun gnus-balloon-face-function (form type
)
278 `(gnus-put-text-property
279 (point) (progn ,@form
(point))
280 ,(if (fboundp 'balloon-help-mode
)
283 ,(intern (format "gnus-balloon-face-%d" type
))))
285 (defun gnus-spec-tab (column)
287 `(insert-char ?
(max (- ,column
(current-column)) 0))
288 (let ((column (abs column
)))
289 `(if (> (current-column) ,column
)
291 (if (= (move-to-column ,column
) ,column
)
292 (delete-region (point) end
)
293 (delete-region (1- (point)) end
)
295 (insert-char ?
(max (- ,column
(current-column)) 0))))))
297 (defun gnus-correct-length (string)
298 "Return the correct width of STRING."
300 (mapcar (lambda (char) (incf length
(gnus-char-width char
))) string
)
303 (defun gnus-correct-substring (string start
&optional end
)
308 (length (length string
))
309 (string (concat string
"\0")))
310 ;; Find the start position.
311 (while (and (< seek length
)
313 (incf wseek
(gnus-char-width (aref string seek
)))
316 ;; Find the end position.
317 (while (and (<= seek length
)
320 (incf wseek
(gnus-char-width (aref string seek
)))
323 (substring string wstart
(1- wend
))))
325 (defun gnus-string-width-function ()
327 (gnus-use-correct-string-widths
328 'gnus-correct-length
)
329 ((fboundp 'string-width
)
334 (defun gnus-substring-function ()
336 (gnus-use-correct-string-widths
337 'gnus-correct-substring
)
338 ((fboundp 'string-width
)
339 'gnus-correct-substring
)
343 (defun gnus-tilde-max-form (el max-width
)
344 "Return a form that limits EL to MAX-WIDTH."
345 (let ((max (abs max-width
))
346 (length-fun (gnus-string-width-function))
347 (substring-fun (gnus-substring-function)))
349 `(if (> (,length-fun
,el
) ,max
)
351 `(,substring-fun
,el
(- (,length-fun
,el
) ,max
))
352 `(,substring-fun
,el
0 ,max
))
354 `(let ((val (eval ,el
)))
355 (if (> (,length-fun val
) ,max
)
357 `(,substring-fun val
(- (,length-fun val
) ,max
))
358 `(,substring-fun val
0 ,max
))
361 (defun gnus-tilde-cut-form (el cut-width
)
362 "Return a form that cuts CUT-WIDTH off of EL."
363 (let ((cut (abs cut-width
))
364 (length-fun (gnus-string-width-function))
365 (substring-fun (gnus-substring-function)))
367 `(if (> (,length-fun
,el
) ,cut
)
369 `(,substring-fun
,el
0 (- (,length-fun
,el
) ,cut
))
370 `(,substring-fun
,el
,cut
))
372 `(let ((val (eval ,el
)))
373 (if (> (,length-fun val
) ,cut
)
375 `(,substring-fun val
0 (- (,length-fun val
) ,cut
))
376 `(,substring-fun val
,cut
))
379 (defun gnus-tilde-ignore-form (el ignore-value
)
380 "Return a form that is blank when EL is IGNORE-VALUE."
382 `(if (equal ,el
,ignore-value
)
384 `(let ((val (eval ,el
)))
385 (if (equal val
,ignore-value
)
388 (defun gnus-pad-form (el pad-width
)
389 "Return a form that pads EL to PAD-WIDTH accounting for multi-column
390 characters correctly. This is because `format' may pad to columns or to
391 characters when given a pad value."
392 (let ((pad (abs pad-width
))
393 (side (< 0 pad-width
))
394 (length-fun (gnus-string-width-function)))
396 `(let ((need (- ,pad
(,length-fun
,el
))))
398 (concat ,(when side
'(make-string need ?\
))
400 ,(when (not side
) '(make-string need ?\
)))
402 `(let* ((val (eval ,el
))
403 (need (- ,pad
(,length-fun val
))))
405 (concat ,(when side
'(make-string need ?\
))
407 ,(when (not side
) '(make-string need ?\
)))
410 (defun gnus-parse-format (format spec-alist
&optional insert
)
411 ;; This function parses the FORMAT string with the help of the
412 ;; SPEC-ALIST and returns a list that can be eval'ed to return the
413 ;; string. If the FORMAT string contains the specifiers %( and %)
414 ;; the text between them will have the mouse-face text property.
415 ;; If the FORMAT string contains the specifiers %[ and %], the text between
416 ;; them will have the balloon-help text property.
417 (let ((case-fold-search nil
))
419 "\\`\\(.*\\)%[0-9]?[{(«]\\(.*\\)%[0-9]?[»})]\\(.*\n?\\)\\'\\|%[-0-9]*=\\|%[-0-9]*\\*"
421 (gnus-parse-complex-format format spec-alist
)
422 ;; This is a simple format.
423 (gnus-parse-simple-format format spec-alist insert
))))
425 (defun gnus-parse-complex-format (format spec-alist
)
426 (let ((cursor-spec nil
))
428 (gnus-set-work-buffer)
430 (goto-char (point-min))
431 (while (re-search-forward "\"" nil t
)
432 (replace-match "\\\"" nil t
))
433 (goto-char (point-min))
435 ;; Convert all font specs into font spec lists.
436 (while (re-search-forward "%\\([0-9]+\\)?\\([«»{}()]\\)" nil t
)
437 (let ((number (if (match-beginning 1)
438 (match-string 1) "0"))
439 (delim (aref (match-string 2) 0)))
440 (if (or (= delim ?\
()
443 (replace-match (concat "\"("
444 (cond ((= delim ?\
() "mouse")
445 ((= delim ?\
{) "face")
449 (replace-match "\")\""))))
450 (goto-char (point-max))
452 ;; Convert point position commands.
453 (goto-char (point-min))
454 (let ((case-fold-search nil
))
455 (while (re-search-forward "%\\([-0-9]+\\)?\\*" nil t
)
456 (replace-match "\"(point)\"" t t
)
457 (setq cursor-spec t
)))
458 ;; Convert TAB commands.
459 (goto-char (point-min))
460 (while (re-search-forward "%\\([-0-9]+\\)=" nil t
)
461 (replace-match (format "\"(tab %s)\"" (match-string 1)) t t
))
462 ;; Convert the buffer into the spec.
463 (goto-char (point-min))
464 (let ((form (read (current-buffer))))
466 `(let (gnus-position)
467 ,@(gnus-complex-form-to-spec form spec-alist
)
469 (gnus-put-text-property gnus-position
(1+ gnus-position
)
472 ,@(gnus-complex-form-to-spec form spec-alist
)))))))
474 (defun gnus-complex-form-to-spec (form spec-alist
)
480 (gnus-parse-simple-format sform spec-alist t
))
481 ((eq (car sform
) 'point
)
482 '(setq gnus-position
(point)))
483 ((eq (car sform
) 'tab
)
484 (gnus-spec-tab (cadr sform
)))
486 (funcall (intern (format "gnus-%s-face-function" (car sform
)))
487 (gnus-complex-form-to-spec (cddr sform
) spec-alist
)
492 (defun gnus-xmas-format (fstring &rest args
)
493 "A version of `format' which preserves text properties.
495 Required for XEmacs, where the built in `format' function strips all text
496 properties from both the format string and any inserted strings.
498 Only supports the format sequence %s, and %% for inserting
499 literal % characters. A pad width and an optional - (to right pad)
500 are supported for %s."
501 (let ((re "%%\\|%\\(-\\)?\\([1-9][0-9]*\\)?s")
505 (goto-char (point-min))
506 (while (re-search-forward re nil t
)
507 (goto-char (match-end 0))
509 ((string= (match-string 0) "%%")
513 (error 'wrong-number-of-arguments
#'my-format n fstring
))
514 (let* ((minlen (string-to-number (or (match-string 2) "")))
516 (str (if (stringp arg
) arg
(format "%s" arg
)))
517 (lpad (null (match-string 1)))
518 (padlen (max 0 (- minlen
(length str
)))))
520 (if lpad
(insert-char ?\ padlen
))
522 (unless lpad
(insert-char ?\ padlen
))
523 (setq args
(cdr args
))))))
526 (defun gnus-parse-simple-format (format spec-alist
&optional insert
)
527 ;; This function parses the FORMAT string with the help of the
528 ;; SPEC-ALIST and returns a list that can be eval'ed to return a
531 spec flist fstring elem result dontinsert user-defined
532 type value pad-width spec-beg cut-width ignore-value
533 tilde-form tilde elem-type extended-spec
)
535 (gnus-set-work-buffer)
537 (goto-char (point-min))
538 (while (re-search-forward "%" nil t
)
539 (setq user-defined nil
547 (setq spec-beg
(1- (point)))
549 ;; Parse this spec fully.
552 ((looking-at "\\([-.0-9]+\\)\\(,[-0-9]+\\)?")
553 (setq pad-width
(string-to-number (match-string 1)))
554 (when (match-beginning 2)
555 (setq max-width
(string-to-number (buffer-substring
556 (1+ (match-beginning 2))
558 (goto-char (match-end 0)))
561 (setq tilde
(read (current-buffer))
565 ((memq type
'(pad pad-left
))
566 (setq pad-width value
))
567 ((eq type
'pad-right
)
568 (setq pad-width
(- value
)))
569 ((memq type
'(max-right max
))
570 (setq max-width value
))
572 (setq max-width
(- value
)))
573 ((memq type
'(cut cut-left
))
574 (setq cut-width value
))
575 ((eq type
'cut-right
)
576 (setq cut-width
(- value
)))
579 (if (stringp value
) value
(format "%s" value
))))
581 (setq tilde-form value
))
583 (error "Unknown tilde type: %s" tilde
)))
588 ;; User-defined spec -- find the spec name.
589 ((eq (setq spec
(char-after)) ?u
)
591 (when (and (eq (setq user-defined
(char-after)) ?
&)
592 (looking-at "&\\([^;]+\\);"))
593 (setq user-defined
(match-string 1))
594 (goto-char (match-end 1))))
596 ((and (eq spec ?
&) (looking-at "&\\([^;]+\\);"))
597 (setq extended-spec
(intern (match-string 1)))
598 (goto-char (match-end 1))))
600 (delete-region spec-beg
(point))
602 ;; Now we have all the relevant data on this spec, so
603 ;; we start doing stuff.
606 ;; "%%" just results in a "%".
611 (setq elem
(list tilde-form ?s
)))
612 ;; Treat user defined format specifiers specially.
616 (list (intern (format
617 (if (stringp user-defined
)
618 "gnus-user-format-function-%s"
619 "gnus-user-format-function-%c")
623 ;; Find the specification from `spec-alist'.
624 ((setq elem
(cdr (assq (or extended-spec spec
) spec-alist
))))
626 (setq elem
'("*" ?s
))))
627 (setq elem-type
(cadr elem
))
628 ;; Insert the new format elements.
630 (not (and (featurep 'xemacs
)
631 gnus-use-correct-string-widths
)))
632 (insert (number-to-string pad-width
)))
633 ;; Create the form to be evaled.
634 (if (or max-width cut-width ignore-value
635 (and (featurep 'xemacs
)
636 gnus-use-correct-string-widths
))
639 (let ((el (car elem
)))
640 (cond ((= (cadr elem
) ?c
)
641 (setq el
(list 'char-to-string el
)))
643 (setq el
(list 'int-to-string el
))))
645 (setq el
(gnus-tilde-ignore-form el ignore-value
)))
647 (setq el
(gnus-tilde-cut-form el cut-width
)))
649 (setq el
(gnus-tilde-max-form el max-width
)))
651 (setq el
(gnus-pad-form el pad-width
)))
654 (push (car elem
) flist
))))
655 (setq fstring
(buffer-substring-no-properties (point-min) (point-max))))
657 ;; Do some postprocessing to increase efficiency.
662 ((string= fstring
"")
664 ;; Not a format string.
665 ((not (string-match "%" fstring
))
667 ;; A format string with just a single string spec.
668 ((string= fstring
"%s")
670 ;; A single character.
671 ((string= fstring
"%c")
674 ((string= fstring
"%d")
677 (list `(princ ,(car flist
)))
678 (list `(int-to-string ,(car flist
)))))
679 ;; Just lots of chars and strings.
680 ((string-match "\\`\\(%[cs]\\)+\\'" fstring
)
682 ;; A single string spec at the beginning of the spec.
683 ((string-match "\\`%[sc][^%]+\\'" fstring
)
684 (list (car flist
) (substring fstring
2)))
685 ;; A single string spec in the middle of the spec.
686 ((string-match "\\`\\([^%]+\\)%[sc]\\([^%]+\\)\\'" fstring
)
687 (list (match-string 1 fstring
) (car flist
) (match-string 2 fstring
)))
688 ;; A single string spec in the end of the spec.
689 ((string-match "\\`\\([^%]+\\)%[sc]\\'" fstring
)
690 (list (match-string 1 fstring
) (car flist
)))
691 ;; Only string (and %) specs (XEmacs only!)
692 ((and (featurep 'xemacs
)
693 gnus-make-format-preserve-properties
695 "\\`\\([^%]*\\(%%\\|%-?\\([1-9][0-9]*\\)?s\\)\\)*[^%]*\\'"
697 (list (cons 'gnus-xmas-format
(cons fstring
(nreverse flist
)))))
698 ;; A more complex spec.
700 (list (cons 'format
(cons fstring
(nreverse flist
)))))))
706 (cons 'insert result
)))
707 (cond ((stringp result
)
710 (cons 'concat result
))
713 (defun gnus-eval-format (format &optional alist props
)
714 "Eval the format variable FORMAT, using ALIST.
715 If PROPS, insert the result."
716 (let ((form (gnus-parse-format format alist props
)))
718 (gnus-add-text-properties (point) (progn (eval form
) (point)) props
)
721 (defun gnus-compile ()
722 "Byte-compile the user-defined format specs."
725 (let ((entries gnus-format-specs
)
726 (byte-compile-warnings '(unresolved callargs redefine
))
729 (gnus-message 7 "Compiling format specs...")
732 (setq entry
(pop entries
))
733 (if (memq (car entry
) '(gnus-version version
))
734 (setq gnus-format-specs
(delq entry gnus-format-specs
))
735 (let ((form (caddr entry
)))
736 (when (and (listp form
)
737 ;; Under GNU Emacs, it's (byte-code ...)
738 (not (eq 'byte-code
(car form
)))
739 ;; Under XEmacs, it's (funcall #<compiled-function ...>)
740 (not (and (eq 'funcall
(car form
))
741 (byte-code-function-p (cadr form
)))))
742 (defalias 'gnus-tmp-func
`(lambda () ,form
))
743 (byte-compile 'gnus-tmp-func
)
744 (setcar (cddr entry
) (gnus-byte-code 'gnus-tmp-func
))))))
746 (push (cons 'version emacs-version
) gnus-format-specs
)
747 ;; Mark the .newsrc.eld file as "dirty".
749 (gnus-message 7 "Compiling user specs...done"))))
751 (defun gnus-set-format (type &optional insertable
)
752 (set (intern (format "gnus-%s-line-format-spec" type
))
754 (symbol-value (intern (format "gnus-%s-line-format" type
)))
755 (symbol-value (intern (format "gnus-%s-line-format-alist" type
)))
761 ;; coding: iso-8859-1
764 ;;; arch-tag: a4328fa1-1f84-4b09-97ad-4b5767cfd50f
765 ;;; gnus-spec.el ends here