From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tony E. Bennett Subject: org-open-line inconsistent treatment of marking characters '#' and '*' Date: Thu, 10 Jan 2019 11:37:22 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:45184) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ghdKs-0001CX-3k for emacs-orgmode@gnu.org; Thu, 10 Jan 2019 11:37:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ghdKr-0006ki-Ei for emacs-orgmode@gnu.org; Thu, 10 Jan 2019 11:37:38 -0500 Received: from [195.159.176.226] (port=35700 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ghdKr-0006cB-5l for emacs-orgmode@gnu.org; Thu, 10 Jan 2019 11:37:37 -0500 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1ghdIc-00065r-Na for emacs-orgmode@gnu.org; Thu, 10 Jan 2019 17:35:18 +0100 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" To: emacs-orgmode@gnu.org Hello org-open-line replicates the table marking character '#' (if present) into the new table line but does not do the same for '*'. Since the semantics of '#' and '*' are so similar I expect them to be treated identically when opening a new table line. Within defun org-table-insert-row, changing this line: ;; Fix the first field if necessary (when (string-match "^[ \t]*| *[#$] *|" line) to: ;; Fix the first field if necessary (when (string-match "^[ \t]*| *[#*$] *|" line) gives the expected behavior. Can this be fixed? thanks -- --tony