diff options
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. |