From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Sam Steingold Newsgroups: gmane.emacs.devel Subject: Re: org-macs ignoring stock functionality Date: Mon, 19 Nov 2018 16:01:36 -0500 Message-ID: References: <87ftvwex8g.fsf@nicolasgoaziou.fr> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-Trace: blaine.gmane.org 1542661204 8768 195.159.176.226 (19 Nov 2018 21:00:04 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Mon, 19 Nov 2018 21:00:04 +0000 (UTC) Cc: emacs-devel@gnu.org To: mail@nicolasgoaziou.fr Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Nov 19 22:00:00 2018 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gOqeC-00021u-7i for ged-emacs-devel@m.gmane.org; Mon, 19 Nov 2018 21:59:56 +0100 Original-Received: from localhost ([::1]:59007 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gOqgI-0007Dq-HG for ged-emacs-devel@m.gmane.org; Mon, 19 Nov 2018 16:02:06 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:56155) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gOqg5-0007Dh-PH for emacs-devel@gnu.org; Mon, 19 Nov 2018 16:01:55 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gOqg2-0005f6-44 for emacs-devel@gnu.org; Mon, 19 Nov 2018 16:01:53 -0500 Original-Received: from mail-wr1-f43.google.com ([209.85.221.43]:37718) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gOqg1-0005eg-U6 for emacs-devel@gnu.org; Mon, 19 Nov 2018 16:01:50 -0500 Original-Received: by mail-wr1-f43.google.com with SMTP id j10so19313201wru.4 for ; Mon, 19 Nov 2018 13:01:49 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=Vx06Fm7ecfpPoQzGr/HjvKp0OBO8zjuDhS1zlbfnZUM=; b=OClxrN9Q7z2Ca7m1QA0rl7p/ggaQrs5nG4EKX3G+zANrDFKlulcCMhyqPkDCyKKrvN iyNtaIuZYO1I3RxqOTXtHDMufcumLRWajFUjDTpr02XSz6F6gsdHAENU9zpqwTcPI6B4 XVnozuLXU2xFvG7dC0m1BH3mZc8/Pcey8CqA6Gz4/nTzpkHUzsJfXfExahdyO7Q70apC fj17OoVWHsCSwd7RBPpE4NOlMUAWT2gddodOFNT7VQHdRu3TkZ6EAhIloWFmzWqBA6qg rmOw/YmM2U/Ta95IQDXW/oiG0K+bRzbBH94TYjzD+EnnnonnpyHAS7rBNzFF6/v+r6E6 4tOA== X-Gm-Message-State: AA+aEWYYvv80nUb/oSwzoCk9esfIYsh2wxYR+N5KIezUGldbrpWc/5kq 8i/RxTj5q1gLXWOBqiMaKsmVwgZKL6no74DBrA== X-Google-Smtp-Source: AFSGD/WhBjSD3RXtuLNWi7iYXZj2qe4S4q7ObmWR4qetJGqBDMj+rMTFJ0ekAudtML40kudaA/lhatMlIg8Ozz520W0= X-Received: by 2002:a5d:49cd:: with SMTP id t13mr12792993wrs.144.1542661308653; Mon, 19 Nov 2018 13:01:48 -0800 (PST) In-Reply-To: <87ftvwex8g.fsf@nicolasgoaziou.fr> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.85.221.43 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.devel:231237 Archived-At: On Mon, Nov 19, 2018 at 1:30 PM Nicolas Goaziou wrote: > Sam Steingold writes: > > > I do not use org, but it > > accidentally(https://emacs.stackexchange.com/a/46083/795) came to my > > attention that org-macs.el duplicates some emacs stock functionality: > > > > 1. org-split-string - ignores split-string-default-separators; can > > probably be simplified to (split-string string separators nil t) > > `org-split-string' and `split-string' are slightly different. The former > ignores separators at the beginning and at the end of the string, not > the latter. Indeed, and the last argument `t` takes care of this difference. > At some point, it used `split-string', but it happened to be > too slow for a core Org function. The org-split-string I see in git master calls split-string. Thanks. -- Sam Steingold