diff options
author | Roland McGrath <roland@gnu.org> | 1993-04-28 20:31:02 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1993-04-28 20:31:02 +0000 |
commit | 8b38db33899654d1923284bee44985a058f790c0 (patch) | |
tree | ab509bddf8f31d9a466181bf60aed629ec98be7b /lisp/gnuspost.el | |
parent | 59c6a78e58ec2dc5ab4c409cd92509c49acb3487 (diff) | |
download | emacs-8b38db33899654d1923284bee44985a058f790c0.tar.gz |
(gnus-inews-organization): If ORGANIZATION is "", set it to nil.
Diffstat (limited to 'lisp/gnuspost.el')
-rw-r--r-- | lisp/gnuspost.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/gnuspost.el b/lisp/gnuspost.el index b252f27dcf9..9c00482c095 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 <umerin@flab.flab.fujitsu.junet> ;; 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. |