From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Oleh Krehel Newsgroups: gmane.emacs.devel Subject: Re: Fixing namespace prefixes in outline.el Date: Wed, 28 Jan 2015 12:47:54 +0100 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1422445682 2164 80.91.229.3 (28 Jan 2015 11:48:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 28 Jan 2015 11:48:02 +0000 (UTC) To: emacs-devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jan 28 12:48:02 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YGR6G-00057Z-TL for ged-emacs-devel@m.gmane.org; Wed, 28 Jan 2015 12:48:01 +0100 Original-Received: from localhost ([::1]:52662 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGR6G-0001m5-D3 for ged-emacs-devel@m.gmane.org; Wed, 28 Jan 2015 06:48:00 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34422) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGR6D-0001ly-9y for emacs-devel@gnu.org; Wed, 28 Jan 2015 06:47:58 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YGR6C-0007hr-K4 for emacs-devel@gnu.org; Wed, 28 Jan 2015 06:47:57 -0500 Original-Received: from mail-we0-x233.google.com ([2a00:1450:400c:c03::233]:42179) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGR6C-0007hM-Eh for emacs-devel@gnu.org; Wed, 28 Jan 2015 06:47:56 -0500 Original-Received: by mail-we0-f179.google.com with SMTP id q59so20289657wes.10 for ; Wed, 28 Jan 2015 03:47:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=QSgqTMzfVGMRu56leRFY8mD9m7w+KjE13y9UnOeSew0=; b=qaTbFNMHjI+vz7aeu3BM4aVYGq0sD0MFGw/qCgrFrBw9RsPhIasaTziac0VdOAamhp GXJYLhkApIQn1kgMadmmDhYES1Hcei0BSIr4UXOcM8Th+V34TApPc7MVnH3mSYOdnTpN JpveIvy4N3RmkU2ZWiAwMX1sGcmMZwcAbCbuzUL2YLPEdiyv6UJ6XfV/n4u3uGNkcSXj ZLHT5+DYf3vth/0h0LVxiIWvKnXuY3hWTg4La4SBTkAlKuwhI1zNC4JIW9kjS9HTbnYA ZmSSq492N7qyKF+6W9eOZFYQy5lbEzXIluwNoHZUYycTPvgp849deRsw8HCTXSczeG80 ViRQ== X-Received: by 10.181.28.168 with SMTP id jp8mr6455042wid.40.1422445675063; Wed, 28 Jan 2015 03:47:55 -0800 (PST) Original-Received: by 10.27.137.137 with HTTP; Wed, 28 Jan 2015 03:47:54 -0800 (PST) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c03::233 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:181898 Archived-At: > Is it OK to e.g.: > > (defun outline-show-subtree () > "Show everything after this heading at deeper levels." > (interactive) > (outline-flag-subtree nil)) > > (define-obsolete-function-alias > 'show-subtree 'outline-show-subtree "25.1") All namespace changes are now in origin/scratch/outline. I also added/improved a bunch of docstrings in outline.el. Could someone please revew and merge it? Oleh