Gnus development mailing list
 help / color / mirror / Atom feed
* Gnus v5.2.5 is released
@ 1996-06-02 11:35 Lars Magne Ingebrigtsen
  1996-06-02 20:39 ` Customizing user-full-name Steven L Baur
  0 siblings, 1 reply; 4+ messages in thread
From: Lars Magne Ingebrigtsen @ 1996-06-02 11:35 UTC (permalink / raw)


Bug fixes.

Get it from <URL:http://www.ifi.uio.no/~larsi/gnus.tar.gz> or 
"ftp.ifi.uio.no:/pub/emacs/gnus/".

ChangeLog since last release:

Sun Jun  2 07:41:20 1996  Lars Magne Ingebrigtsen  <larsi@ylfing.ifi.uio.no>

	* gnus-topic.el (gnus-topic-remove-group): Only delete first
	instance. 
	(gnus-topic-move-group): Ditto.
	(gnus-topic-change-level): Ditto.

	* gnus.el (gnus-summary-insert-subject): Do rebuilding of sparse
	articles right.
	(gnus-summary-update-article): Do updating of referred articles
	right. 
	(gnus-delete-first): New function.

	* gnus-cus.el (()): Color change.

	* gnus.el (gnus-version): Accept a prefix to insert.

Sat Jun  1 02:03:42 1996  Lars Magne Ingebrigtsen  <lars@eyesore.no>

	* custom.el: Require cl.

	* gnus.el (gnus-group-list-matching): `10 A m' to read the active
	file. 

	* message.el (message-supersede): Don't use
	`mail-strip-quoted-names'. 
	(message-cancel-news): Ditto.

	* nnfolder.el (nnfolder-retrieve-headers): Don't allow selecting
	empty groups.
	(nnfolder-request-group): Ditto.

Sat Jun  1 01:26:45 1996  Per Abrahamsen  <abraham@dina.kvl.dk>

	* dgnushack.el (custom-file): Nix out.

Sat Jun  1 01:24:28 1996  Massimo Campostrini  <campo@sunthpi3.difi.unipi.it>

	* gnus-cus.el (()): Wrong number of arguments.

Fri May 31 08:32:38 1996  Lars Magne Ingebrigtsen  <lars@eyesore.no>

	* gnus.el: Removed obsolete autoloads.

	* gnus-demon.el (gnus-demon-init): Use `nnheader-run-at-time'. 

	* gnus.el (gnus-group-catchup-current): Warn.

	* gnus-srvr.el (gnus-browse-foreign-server): Message better.

	* gnus-topic.el (gnus-topic-change-level): Make sure we're in the
	group buffer.

	* gnus-srvr.el (gnus-server-exit-hook): New hook.
	(gnus-server-exit): Use it.

	* gnus-topic.el (gnus-topic-mode): Update more.

	* gnus.el (gnus-group-update-group-hook): New hook.
	(gnus-group-update-group): Use it.

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@ifi.uio.no * Lars Ingebrigtsen


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Customizing user-full-name
  1996-06-02 11:35 Gnus v5.2.5 is released Lars Magne Ingebrigtsen
@ 1996-06-02 20:39 ` Steven L Baur
  1996-06-03  6:08   ` Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 4+ messages in thread
From: Steven L Baur @ 1996-06-02 20:39 UTC (permalink / raw)


Changing the user-full name is a problem.  Here is my proposed
treatment of it.  This patch adds a variable called
message-user-full-name which can be used for customization.

This is the same patch I posted Sunday to gnu.emacs.gnus, and is
against Gnus 5.2.5.
===================================================================
RCS file: RCS/ChangeLog,v
retrieving revision 1.5
diff -u -r1.5 ChangeLog
--- ChangeLog	1996/06/02 16:11:49	1.5
+++ ChangeLog	1996/06/02 20:37:02
@@ -1,3 +1,8 @@
+Sun Jun  2 13:35:55 1996  Steven L Baur  <steve@miranova.com>
+
+	* message.el: (message-make-from): Add message-user-full-name for
+	ease of customization.
+
 Sun Jun  2 07:41:20 1996  Lars Magne Ingebrigtsen  <larsi@ylfing.ifi.uio.no>
 
 	* gnus-topic.el (gnus-topic-remove-group): Only delete first

===================================================================
RCS file: RCS/message.el,v
retrieving revision 1.5
diff -u -r1.5 message.el
--- message.el	1996/06/02 16:11:49	1.5
+++ message.el	1996/06/02 19:40:15
@@ -152,6 +152,10 @@
 If t, use `message-user-organization-file'.")
 
 ;;;###autoload
+(defvar message-user-full-name nil
+  "Allow user to override neatly /etc/passwd GCOS garbage")
+
+;;;###autoload
 (defvar message-user-organization-file "/usr/lib/news/organization"
   "*Local news organization file.")
 
@@ -1879,7 +1883,8 @@
 (defun message-make-from ()
   "Make a From header."
   (let* ((login (message-make-address))
-	 (fullname (user-full-name)))
+	 (fullname (or message-user-full-name
+		       (user-full-name)))
     (when (string= fullname "&")
       (setq fullname (user-login-name)))
     (save-excursion


-- 
steve@miranova.com baur
Unsolicited commercial e-mail will be proofread for $250/hour.
Andrea Seastrand: For your vote on the Telecom bill, I will vote for anyone
except you in November.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Customizing user-full-name
  1996-06-02 20:39 ` Customizing user-full-name Steven L Baur
@ 1996-06-03  6:08   ` Lars Magne Ingebrigtsen
  1996-06-03  7:14     ` Steven L Baur
  0 siblings, 1 reply; 4+ messages in thread
From: Lars Magne Ingebrigtsen @ 1996-06-03  6:08 UTC (permalink / raw)
  Cc: xemacs-beta

Steven L Baur <steve@miranova.com> writes:

> Changing the user-full name is a problem.  Here is my proposed
> treatment of it.  This patch adds a variable called
> message-user-full-name which can be used for customization.

Emacs just has the `user-full-name' function return the
`user-full-name' variable, sort of.  I think it would be nice if
that was the case on XEmacs as well.

If that's not a good idea -- how do users change their full names
under XEmacs?

-- 
  "Yes.  The journey through the human heart 
     would have to wait until some other time."


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Customizing user-full-name
  1996-06-03  6:08   ` Lars Magne Ingebrigtsen
@ 1996-06-03  7:14     ` Steven L Baur
  0 siblings, 0 replies; 4+ messages in thread
From: Steven L Baur @ 1996-06-03  7:14 UTC (permalink / raw)
  Cc: ding, xemacs-beta

>>>>> "Lars" == Lars Magne Ingebrigtsen <larsi@ifi.uio.no> writes:

Lars> Steven L Baur <steve@miranova.com> writes:
>> Changing the user-full name is a problem.  Here is my proposed
>> treatment of it.  This patch adds a variable called
>> message-user-full-name which can be used for customization.

Lars> Emacs just has the `user-full-name' function return the
Lars> `user-full-name' variable, sort of.  I think it would be nice if
Lars> that was the case on XEmacs as well.

Lars> If that's not a good idea -- how do users change their full names
Lars> under XEmacs?

chfn, or vipw.  ;-)  It looks like this can be customized via the NAME
environment variable as well.  This stuff is all hardcoded in C.

-- 
steve@miranova.com baur
Unsolicited commercial e-mail will be proofread for $250/hour.
Andrea Seastrand: For your vote on the Telecom bill, I will vote for anyone
except you in November.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~1996-06-03  7:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1996-06-02 11:35 Gnus v5.2.5 is released Lars Magne Ingebrigtsen
1996-06-02 20:39 ` Customizing user-full-name Steven L Baur
1996-06-03  6:08   ` Lars Magne Ingebrigtsen
1996-06-03  7:14     ` Steven L Baur

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 NNTP newsgroup(s).