From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?Fran=C3=A7ois_Pinard?= Subject: Fontification in Org tables Date: Fri, 28 Dec 2012 12:40:13 -0500 Message-ID: <86txr613nh.fsf@iro.umontreal.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:41681) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Todux-0001mv-3r for emacs-orgmode@gnu.org; Fri, 28 Dec 2012 12:40:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Toduq-0006u9-8b for emacs-orgmode@gnu.org; Fri, 28 Dec 2012 12:40:20 -0500 Received: from 206-248-137-202.dsl.teksavvy.com ([206.248.137.202]:49873 helo=mercure.bureau.ubity.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Toduq-0006tu-3C for emacs-orgmode@gnu.org; Fri, 28 Dec 2012 12:40:16 -0500 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: emacs-orgmode@gnu.org Hi, Org people. Let me report an old problem of mine about missing fontification in Org tables. In my .emacs file, I have: (defun fp-fontify-fixme () (font-lock-add-keywords nil '(("\\" 0 font-lock-warning-face t)))) (let ((hooks '(c-mode-common-hook change-log-mode-hook cperl-mode-hook css-mode-hook emacs-lisp-mode-hook html-mode-hook latex-mode-hook lisp-mode-hook makefile-mode-hook message-mode-hook org-mode-hook php-mode-hook python-mode-hook sh-mode-hook shell-mode-hook ssh-config-mode-hook))) (while hooks (add-hook (car hooks) 'fp-fontify-fixme) (setq hooks (cdr hooks)))) This works nicely in Org file, /except/ within Org tables. Would someone be kind enough to give me a magical recipe to solve it? :-) Fran=C3=A7ois