# HG changeset patch # User Roland McGrath # Date 736029062 0 # Node ID c6fef1c54d0062ae35b2b907c7665364789d5fe8 # Parent 615f7101473ab84fbf9d0c4d8fe098d04f413138 (gnus-inews-organization): If ORGANIZATION is "", set it to nil. diff -r 615f7101473a -r c6fef1c54d00 lisp/=gnuspost.el --- a/lisp/=gnuspost.el Wed Apr 28 17:33:42 1993 +0000 +++ b/lisp/=gnuspost.el Wed Apr 28 20:31:02 1993 +0000 @@ -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 ;; Keywords: news @@ -644,6 +644,8 @@ (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.