From mboxrd@z Thu Jan 1 00:00:00 1970 From: Feng Shu Subject: require a feature: merge many contacts which have the same name. Date: Fri, 10 May 2013 08:29:11 +0800 Message-ID: <87ehdffzjc.fsf@news.tumashu-localhost.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:41250) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UabDi-0005aB-5s for emacs-orgmode@gnu.org; Thu, 09 May 2013 20:29:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UabDh-0002bC-7d for emacs-orgmode@gnu.org; Thu, 09 May 2013 20:29:58 -0400 Received: from mail-pa0-f41.google.com ([209.85.220.41]:49483) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UabDh-0002ax-1k for emacs-orgmode@gnu.org; Thu, 09 May 2013 20:29:57 -0400 Received: by mail-pa0-f41.google.com with SMTP id rl6so2506025pac.0 for ; Thu, 09 May 2013 17:29:56 -0700 (PDT) Received: from tumashu ([110.97.89.227]) by mx.google.com with ESMTPSA id li15sm438820pab.2.2013.05.09.17.29.53 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 09 May 2013 17:29:55 -0700 (PDT) Received: from feng by tumashu with local (Exim 4.80) (envelope-from ) id 1UabCx-0002b5-Vt for emacs-orgmode@gnu.org; Fri, 10 May 2013 08:29:12 +0800 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: orgmode I think org-contacts.el shoule have the feature which can merge many contacts which have the same name into one, for example: #+begin_example * name :PROPERTIES: :EMAIL: [[mailto:a@a.com]] [[mailto:b@b.com]] :PHONE: [[tel:123456789]] :ALIAS: a :END: * name :PROPERTIES: :EMAIL: [[mailto:c@a.com]] [[mailto:d@b.com]] :PHONE: [[tel:987654321]] :ALIAS: b :END: * name :PROPERTIES: :EMAIL: [[mailto:e@a.com]] [[mailto:f@b.com]] :PHONE: [[tel:1111111]] :ALIAS: c :END: #+end_example how can I get the result: #+begin_example * name :PROPERTIES: :EMAIL: [[mailto:a@a.com]] [[mailto:b@b.com]] [[mailto:c@a.com]] [[mailto:d@b.com]] [[mailto:e@a.com]] [[mailto:f@b.com]] :PHONE: [[tel:123456789]] [[tel:987654321]] [[tel:11111111]] :ALIAS: a b c :END: #+end_example Feng Shu --