From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?S=C3=A9bastien_Vauban?= Subject: Re: Enhancing the Org/Gnus experience Date: Thu, 04 Nov 2010 16:06:38 +0100 Message-ID: <80y6996sch.fsf@mundaneum.com> References: <80k4lj78ui.fsf@mundaneum.com> <87sk07fl3s.fsf@gmail.com> <80k4lf337a.fsf@mundaneum.com> <80vd4z9q2f.fsf@mundaneum.com> <874oc2z2uv.fsf@gmail.com> <8062wdcp6y.fsf@mundaneum.com> <877hgtfhaq.fsf@ucl.ac.uk> <87sjzhdxmh.fsf@gmail.com> <87zktpchzr.fsf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org To: emacs-orgmode-mXXj517/zsQ@public.gmane.org Eric, Eric S Fraga wrote: > "Eric Schulte" writes: > > [...] > >> if it is working, then the following code block should be fontified as >> if in an Org-mode buffer >> >> #+begin_src emacs-lisp >> (message "is it working?") >> #+end_src > > Definitely not working then! This comes out as simple text in gnus and > doesn't look at all like it would in an org buffer for me. > > [...] > >> the above should do it. My addition recovers from failures by inserting >> the unfontified text into the buffer, so it's possible that whatever >> issue I have that throws errors on non-src blocks is also an issue on >> your machine and is throwing errors on all blocks, which would explain >> why you aren't seeing any difference in your article buffers. > > Looks like it. Is there any way to debug this? I don't get any > messages in Emacs (*Messages*). I seem to have the same settings as > S=C3=A9bastien has posted along with your augmented error handling. I do= n't > really understand all the mm-uu code (although I'm learning...) so I am > not sure how gnus knows to invoke the specific org code you guys have > posted. > > Maybe other gnus configurations, especially gnus-part-display-hook, may > be interfering? The only thing that I have in that direction is: #+begin_src emacs-lisp ;; change a `\205' figure to "..." (add-hook 'gnus-part-display-hook 'article-treat-dumbquotes) #+end_src Do you want me to send you my .gnus privately? Other ideas: - which version of Gnus? Gnus v5.13? - which fonts for your Org code? With colored *background*? Maybe have a try with my color-theme (see on Worg), or insert such lines into yours: #+begin_src emacs-lisp (let* ((inline-code '(:foreground "blue1" :background "#EAFFEA")) (block-code '(:foreground "blue1" :background "#FFFFEA"))) ;; [...] (org-block ((t ,block-code))) (org-code ((t ,inline-code))) (org-column ((t ,column))) (org-document-info-keyword ((t (:foreground "#008ED1" :background "#= EAEAFF")))) (org-meta-line ((t (:foreground "#008ED1" :background "#EAEAFF")))) (org-special-keyword ((t (:foreground "#00BB00" :background "#EAFFEA= ")))) (org-table ((t (:foreground "blue1" :background "#EAFFEA")))) (org-verbatim ((t ,inline-code))) #+end_src Best regards, Seb --=20 S=C3=A9bastien Vauban _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode-mXXj517/zsQ@public.gmane.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode