From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Oleh Newsgroups: gmane.emacs.devel Subject: Fixing namespace prefixes in outline.el Date: Mon, 26 Jan 2015 19:31:49 +0100 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1422297120 24254 80.91.229.3 (26 Jan 2015 18:32:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 26 Jan 2015 18:32:00 +0000 (UTC) To: emacs-devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jan 26 19:31:56 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 1YFoS3-0001zN-Qz for ged-emacs-devel@m.gmane.org; Mon, 26 Jan 2015 19:31:55 +0100 Original-Received: from localhost ([::1]:43360 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YFoS3-0005lB-3x for ged-emacs-devel@m.gmane.org; Mon, 26 Jan 2015 13:31:55 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:35440) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YFoS0-0005kn-3e for emacs-devel@gnu.org; Mon, 26 Jan 2015 13:31:53 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YFoRz-0001Dg-5B for emacs-devel@gnu.org; Mon, 26 Jan 2015 13:31:52 -0500 Original-Received: from mail-wg0-x22d.google.com ([2a00:1450:400c:c00::22d]:49480) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YFoRy-0001DW-Uc for emacs-devel@gnu.org; Mon, 26 Jan 2015 13:31:51 -0500 Original-Received: by mail-wg0-f45.google.com with SMTP id x12so10625432wgg.4 for ; Mon, 26 Jan 2015 10:31:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=hccBb7v8kGcktO1uRPkjEE9lEiNJoXLtjr0RzEU64G0=; b=Ib2hc1RfA29Yo17kV7MtAOEYuz/MYw5PY+wElOzTRzNjrW8cANjCr3R9zmRrbXhZv4 ccO84WhOcsjAjCzWGXar7OZFOEcdn3VIihi7SIdLHC7Aa9BnirXVPMAMQM1IrQbJXPlQ ZjlVNWmOHgLrBr29sWIK3iTTe3jiX7VscIGbOsUllQGAhp1TFCkuMbdhSKbo7EpfBqjb VpMlvW/RHOGqL5aVbDpVqmCoL5DtrgOBSaf+HKR7SuOaIyEBiR0ewtj3VxwQ9ia+9VzE x1jUpoz8/p7dGlpfgyzwhiY6Cw9d77bXTu1Ci994ANeEiHzhmGyzvNqmKtTUZertIAav Q09A== X-Received: by 10.194.60.19 with SMTP id d19mr45808531wjr.48.1422297109575; Mon, 26 Jan 2015 10:31:49 -0800 (PST) Original-Received: by 10.27.137.137 with HTTP; Mon, 26 Jan 2015 10:31:49 -0800 (PST) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c00::22d 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:181797 Archived-At: Hi all, As I was looking to improve the patch in http://debbugs.gnu.org/cgi/bugreport.cgi?bug=19493, I've noticed that outline.el has some really outdated stuff, like function names without prefixes, and plain text instead of "\\{outline-mode-map}" in the mode definition. 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") Also, what's the opinion on the indentation with tabs and spaces? Encouraged / discouraged / don't care? I very much prefer spaces only. regards, Oleh