comparison lisp/net/rcirc.el @ 108768:56c66753dd38

* net/rcirc.el (rcirc-default-user-name, rcirc-default-full-name): Add :version.
author Glenn Morris <rgm@gnu.org>
date Mon, 24 May 2010 20:38:41 -0700
parents 471d9557d537
children d01ede419552
comparison
equal deleted inserted replaced
108767:471d9557d537 108768:56c66753dd38
1 ;;; rcirc.el --- default, simple IRC client. 1 ;;; rcirc.el --- default, simple IRC client.
2 2
3 ;; Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 3 ;; Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010
4 ;; Free Software Foundation, Inc.
4 5
5 ;; Author: Ryan Yeske 6 ;; Author: Ryan Yeske
6 ;; URL: http://www.nongnu.org/rcirc 7 ;; URL: http://www.nongnu.org/rcirc
7 ;; Keywords: comm 8 ;; Keywords: comm
8 9
113 :type 'string 114 :type 'string
114 :group 'rcirc) 115 :group 'rcirc)
115 116
116 (defcustom rcirc-default-user-name "user" 117 (defcustom rcirc-default-user-name "user"
117 "Your user name sent to the server when connecting." 118 "Your user name sent to the server when connecting."
119 :version "24.1" ; changed default
118 :type 'string 120 :type 'string
119 :group 'rcirc) 121 :group 'rcirc)
120 122
121 (defcustom rcirc-default-full-name "unknown" 123 (defcustom rcirc-default-full-name "unknown"
122 "The full name sent to the server when connecting." 124 "The full name sent to the server when connecting."
125 :version "24.1" ; changed default
123 :type 'string 126 :type 'string
124 :group 'rcirc) 127 :group 'rcirc)
125 128
126 (defcustom rcirc-fill-flag t 129 (defcustom rcirc-fill-flag t
127 "*Non-nil means line-wrap messages printed in channel buffers." 130 "*Non-nil means line-wrap messages printed in channel buffers."