aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/gnuspost.el
diff options
context:
space:
mode:
authorRoland McGrath <[email protected]>1993-04-28 20:31:02 +0000
committerRoland McGrath <[email protected]>1993-04-28 20:31:02 +0000
commit8b38db33899654d1923284bee44985a058f790c0 (patch)
treeab509bddf8f31d9a466181bf60aed629ec98be7b /lisp/gnuspost.el
parent59c6a78e58ec2dc5ab4c409cd92509c49acb3487 (diff)
(gnus-inews-organization): If ORGANIZATION is "", set it to nil.
Diffstat (limited to 'lisp/gnuspost.el')
-rw-r--r--lisp/gnuspost.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/gnuspost.el b/lisp/gnuspost.el
index b252f27dcf..9c00482c09 100644
--- a/lisp/gnuspost.el
+++ b/lisp/gnuspost.el
@@ -1,6 +1,6 @@
;;; gnuspost.el --- post news commands for GNUS newsreader
-;; Copyright (C) 1989, 1990 Free Software Foundation, Inc.
+;; Copyright (C) 1989, 1990, 1993 Free Software Foundation, Inc.
;; Author: Masanobu UMEDA <[email protected]>
;; Keywords: news
@@ -644,6 +644,8 @@ containing the organization."
(let ((organization (or (getenv "ORGANIZATION")
gnus-your-organization
(expand-file-name "~/.organization" nil))))
+ (if (equal organization "")
+ (setq organization nil))
(and (stringp organization)
(string-equal (substring organization 0 1) "/")
;; Get it from the user and system file.