emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103093: rcirc.el trivia.


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103093: rcirc.el trivia.
Date: Wed, 02 Feb 2011 23:14:02 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103093
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2011-02-02 23:14:02 -0800
message:
  rcirc.el trivia.
  
  * lisp/net/rcirc.el (rcirc-nick-completion-format): Add :version tag.
  (rcirc-log-directory, rcirc-log-flag): Move definitions before use.
modified:
  lisp/ChangeLog
  lisp/net/rcirc.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-02-03 07:11:31 +0000
+++ b/lisp/ChangeLog    2011-02-03 07:14:02 +0000
@@ -1,5 +1,8 @@
 2011-02-03  Glenn Morris  <address@hidden>
 
+       * net/rcirc.el (rcirc-nick-completion-format): Add :version tag.
+       (rcirc-log-directory, rcirc-log-flag): Move definitions before use.
+
        * strokes.el (strokes-fill-current-buffer-with-whitespace):
        Move definition before use.
        (strokes-report-bug): Make it obsolete.

=== modified file 'lisp/net/rcirc.el'
--- a/lisp/net/rcirc.el 2011-01-31 23:54:50 +0000
+++ b/lisp/net/rcirc.el 2011-02-03 07:14:02 +0000
@@ -328,6 +328,7 @@
 The format string is only used when completing at the beginning
 of a line.  The string is passed as the first argument to
 `format' with the nickname as the second argument."
+  :version "24.1"
   :type 'string
   :group 'rcirc)
 
@@ -1034,6 +1035,17 @@
        (or (eq (aref target 0) ?#)
            (eq (aref target 0) ?&))))
 
+(defcustom rcirc-log-directory "~/.emacs.d/rcirc-log"
+  "Directory to keep IRC logfiles."
+  :type 'directory
+  :group 'rcirc)
+
+(defcustom rcirc-log-flag nil
+  "Non-nil means log IRC activity to disk.
+Logfiles are kept in `rcirc-log-directory'."
+  :type 'boolean
+  :group 'rcirc)
+
 (defun rcirc-kill-buffer-hook ()
   "Part the channel when killing an rcirc buffer."
   (when (eq major-mode 'rcirc-mode)
@@ -1364,17 +1376,6 @@
 (defvar rcirc-last-sender nil)
 (make-variable-buffer-local 'rcirc-last-sender)
 
-(defcustom rcirc-log-directory "~/.emacs.d/rcirc-log"
-  "Directory to keep IRC logfiles."
-  :type 'directory
-  :group 'rcirc)
-
-(defcustom rcirc-log-flag nil
-  "Non-nil means log IRC activity to disk.
-Logfiles are kept in `rcirc-log-directory'."
-  :type 'boolean
-  :group 'rcirc)
-
 (defcustom rcirc-omit-threshold 100
   "Number of lines since last activity from a nick before 
`rcirc-omit-responses' are omitted."
   :type 'integer


reply via email to

[Prev in Thread] Current Thread [Next in Thread]