* gnus-group.el (gnus-group-line-format): Added %O to the default
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Mon, 31 Dec 2001 09:01:29 +0000 (09:01 +0000)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Mon, 31 Dec 2001 09:01:29 +0000 (09:01 +0000)
value.

2001-12-31  Florian Weimer  <fw@deneb.enyo.de>

* gnus.el (gnus): Warn if trying to run Gnus un-byte-compiled.

lisp/ChangeLog
lisp/gnus-group.el
lisp/gnus.el
lisp/nnheader.el

index 4a6824a..fb832a9 100644 (file)
@@ -1,5 +1,12 @@
+2001-12-31  Florian Weimer  <fw@deneb.enyo.de>
+
+       * gnus.el (gnus): Warn if trying to run Gnus un-byte-compiled. 
+
 2001-12-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * gnus-group.el (gnus-group-line-format): Added %O to the default
+       value.
+
        * gnus-util.el (gnus-text-with-property): The smallest point is
        point-min. 
 
index 26d80c9..d8ebea6 100644 (file)
@@ -141,7 +141,7 @@ list."
                         (function-item gnus-group-sort-by-rank)
                         (function :tag "other" nil))))
 
-(defcustom gnus-group-line-format "%M\%S\%p\%P\%5y: %(%g%)%l\n"
+(defcustom gnus-group-line-format "%M\%S\%p\%P\%5y: %(%g%)%l %O\n"
   "*Format of group lines.
 It works along the same lines as a normal formatting string,
 with some simple extensions.
index 82ec8ce..3574e10 100644 (file)
@@ -3292,6 +3292,9 @@ If ARG is non-nil and a positive number, Gnus will use that as the
 startup level. If ARG is non-nil and not a positive number, Gnus will
 prompt the user for the name of an NNTP server to use."
   (interactive "P")
+  (unless (byte-code-function-p (symbol-function 'gnus))
+    (message "You should byte-compile Gnus")
+    (sit-for 2))
   (gnus-1 arg dont-connect slave))
 
 ;; Allow redefinition of Gnus functions.
index deda1d1..bbcc672 100644 (file)
@@ -671,7 +671,7 @@ If FULL, translate everything."
                path ""
                i (if (and (< 1 (length leaf)) (eq ?: (aref leaf 1)))
                      2 0))
-    ;; We translate -- but only the file name.  We leave the directory
+       ;; We translate -- but only the file name.  We leave the directory
        ;; alone.
        (if (and (featurep 'xemacs)
                 (memq system-type '(cygwin32 win32 w32 mswindows windows-nt)))