all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nicolas Goaziou <n.goaziou@gmail.com>
To: Mark Shoulson <mark@kli.org>
Cc: emacs-orgmode@gnu.org
Subject: Re: (no subject)
Date: Thu, 31 May 2012 15:38:33 +0200	[thread overview]
Message-ID: <87r4u031ye.fsf@gmail.com> (raw)
In-Reply-To: <loom.20120531T025544-595@post.gmane.org> (Mark Shoulson's message of "Thu, 31 May 2012 01:50:39 +0000 (UTC)")

Hello,

Mark Shoulson <mark@kli.org> writes:

> +(defvar org-e-html-quote-replacements
> +  '(("fr" "« " " »" "‘" "’" "’")
> +    ("en" "“" "”" "‘" "’" "’")
> +    ("de" "„" "“" "‚" "‘" "’"))

A docstring will be required for this variable. It should be
a defcustom.

> +(defvar org-e-latex-quote-replacements
> +  '(("fr" "«~" "~»" "‹~" "~›" "/!")
> +    ("en" "((" "))" ".(" ")." "/")))

Ditto.

>  (defcustom org-e-latex-quotes
>    '(("fr"
>       ("\\(\\s-\\|[[(]\\|^\\)\"" . "«~")
> @@ -699,25 +703,22 @@ during latex export it will output
>    "Alist for quotes to use when converting english double-quotes.
>  
>  The CAR of each item in this alist is the language code.
> -The CDR of each item in this alist is a list of three CONS:
> -- the first CONS defines the opening quote;
> -- the second CONS defines the closing quote;
> -- the last CONS defines single quotes.
> +The CDR of each item in this alist is a list of CONS:
> +- the first CONS should define the opening quote;
> +- the second CONS should define the closing quote;
> +- subsequent CONS should define any other quotes, e.g. single, etc.
>  
>  For each item in a CONS, the first string is a regexp
>  for allowed characters before/after the quote, the second
>  string defines the replacement string for this quote."
>    :group 'org-export-e-latex
> -  :type '(list
> -	  (cons :tag "Opening quote"
> -		(string :tag "Regexp for char before")
> -		(string :tag "Replacement quote     "))
> -	  (cons :tag "Closing quote"
> -		(string :tag "Regexp for char after ")
> -		(string :tag "Replacement quote     "))
> -	  (cons :tag "Single quote"
> -		(string :tag "Regexp for char before")
> -		(string :tag "Replacement quote     "))))
> +  :type '(repeat
> +	  (cons
> +	   (string :tag "language code")
> +	   (repeat
> +	    (cons :tag "Quote"
> +		  (string :tag "Regexp ")
> +		  (string :tag "Replacement quote     "))))))

The docstring is not valid. It's now an an alist whose key is the
language code and the value is a list of strings, not cons cells.

> +(defun org-e-latex--quotation-marks (text info) 
> +  (org-export-quotation-marks text info org-e-latex-quote-replacements))
> +  ;; (mapc (lambda(l)
> +  ;; 	  (let ((start 0))
> +  ;; 	    (while (setq start (string-match (car l) text start))
> +  ;; 	      (let ((new-quote (concat (match-string 1 text) (cdr l))))
> +  ;; 		(setq text (replace-match new-quote  t t text))))))
> +  ;; 	(cdr (or (assoc (plist-get info :language) org-e-latex-quotes)
> +  ;; 		 ;; Falls back on English.
> +  ;; 		 (assoc "en" org-e-latex-quotes))))
> +  ;; text)

Use directly `org-e-latex-quote-replacements' in code then.

> +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
> +;; Probably a defcustom eventually.
> +
> +;; Each element of this consists of: car=language code, cdr=list of
> +;; double-quote-open-regexp, double-quote-close-regexp,
> +;; single-quote-open-regexp, single-quote-close-regexp, &optional
> +;; single-apostrophe regexp?
> +;; Just about all will be the same anyway, so mostly language DEFAULT.
> +
> +;; For testing purposes, poorly-designed at first.
> +(defvar org-export-quotes-regexps
> +  '((DEFAULT 
> +      "\\(?:\\s-\\|[[(]\\|^\\)\\(\"\\)\\w" 
> +      "\\(?:\\S-\\)\\(\"\\)\\s-" 
> +      "\\(?:\\s-\\|(\\|^\\)\\('\\)\\w"
> +      "\\w\\('\\)\\(?:\\s-\\|\\s.\\|$\\)"
> +      "\\w\\('\\)\\w")))

I'm not sure this variable can be used for both the buffer and the
export engine. Export back-ends will only see chunks of the paragraph.

For example, in the following text,

  He crossed the Rubicon and said: "/Alea jacta est./"

Plain text translators will see three strings:

  1. "He crossed the Rubicon and said: \""
  2. "Alea jacta est."
  3. "\""

In case 1, you have an opening quote with nothing after it. In case 3,
you have a closing quote with nothing before or after it. Plain regexps
can't help here.

The only solution in can think of is to do quote substitutions in
paragraphs within the parse tree before they reach the translators (i.e.
with `org-export-filter-parse-tree-functions').

That's the only way to know if "\"" is an opening or a closing quote,
for example. The current approach won't work.

> +;; Generic function, usable by exporters, but they can define their own
> +;; instead.
> +(defun org-export-quotation-marks (text info replacements)
> +  "Export quotation marks depending on language conventions.
> +TEXT is a string containing quotation marks to be replaced.  INFO
> +is a plist used as a communication channel."

Please document each argument in the docstring.

> +  (let* ((start 0)
> +	 (regexps 
> +	  (cdr 
> +	   (or 
> +	    (assoc (plist-get info :language)
> +		   org-export-quotes-regexps)
> +	    (assoc 'DEFAULT org-export-quotes-regexps))))

Use `assq' instead of `assoc' in the second case.

> +	 (subs (cdr (or (assoc (plist-get info :language)
> +			       replacements)
> +			(assoc "en" replacements))))
> +	 (quotes (pairlis regexps subs)))
> +    (mapc (lambda (p)
> +	    (let ((re (car p))
> +		  (su (cdr p)))
> +	      (while (setq start (string-match re text start))
> +		(setq text (replace-match su t t text 1)))))

Use `replace-regexp-in-string' instead.

  (replace-regexp-in-string (car p) (cdr p) text t t 1)

> +	  quotes))
> +  text)


Regards,

-- 
Nicolas Goaziou

  reply	other threads:[~2012-05-31 13:41 UTC|newest]

Thread overview: 457+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-22  3:32 "Smart" quotes Mark E. Shoulson
2012-05-23 22:17 ` Nicolas Goaziou
2012-05-24  3:05   ` Mark E. Shoulson
2012-05-25 17:14     ` Nicolas Goaziou
2012-05-25 17:51       ` Jambunathan K
2012-05-25 22:51       ` Mark E. Shoulson
2012-05-26  6:48         ` Nicolas Goaziou
2012-05-29  1:30           ` Mark E. Shoulson
2012-05-29 17:57             ` Nicolas Goaziou
2012-05-30  0:51               ` Mark E. Shoulson
2012-05-31  1:50                 ` (no subject) Mark Shoulson
2012-05-31 13:38                   ` Nicolas Goaziou [this message]
2012-05-31 23:26                     ` Smart Quotes Exporting (Was: Re: (no subject)) Mark E. Shoulson
2012-06-01 17:11                       ` Smart Quotes Exporting Nicolas Goaziou
2012-06-01 22:41                         ` Mark E. Shoulson
2012-06-03  3:16                         ` Mark E. Shoulson
2012-06-06  2:14                         ` Mark E. Shoulson
2012-06-07 19:21                           ` Nicolas Goaziou
2012-06-11  1:28                             ` Mark Shoulson
2012-06-12 13:21                               ` Nicolas Goaziou
2012-06-15 16:20                                 ` Mark Shoulson
2012-06-19  9:26                                   ` Nicolas Goaziou
2012-08-07 23:18                                     ` Bastien
  -- strict thread matches above, loose matches on Subject: below --
2020-05-22 10:45 (No subject) slb zetrov
2020-05-22 19:25 ` Yuan Fu
2020-05-23 10:54   ` Michael Albinus
2019-02-04  3:40 (no subject) Lawrence Bottorff
2018-12-19 12:58 Emmanuel Charpentier
2018-10-20  9:02 stardiviner
2018-10-15  8:04 Nik Clayton
2018-10-17 13:20 ` Nicolas Goaziou
2019-09-15 21:06 ` Matt Price
2018-05-03 13:44 Arne Babenhauserheide
2018-05-03 14:29 ` Bastien
2018-05-03 21:02   ` Arne Babenhauserheide
2018-05-04  1:02     ` steen
2018-05-04  5:38   ` Michael Welle
2018-05-11 20:07 ` Nicolas Goaziou
2018-03-02 16:10 Joseph Vidal-Rosset
2016-12-28  7:34 [no subject] Chris Gregory
2016-11-01 16:10 (no subject) John Kitchin
2016-09-19 16:38 John Brodie
2016-09-20 20:32 ` Nicolas Goaziou
2015-11-03 19:53 Fritz Kunze
2015-10-11 19:51 Shankar Rao
2015-09-04 14:51 Eduardo Mercovich
2015-09-04 15:25 ` thomas
2015-09-04 18:35   ` Eduardo Mercovich
2015-01-24 16:23 M.S.Khed Khed
2014-05-03  1:52 Ryan Moszynski
2014-05-03  3:01 ` William Henney
2014-05-03  3:22   ` William Henney
2014-01-30  0:03 Ken Okada
2014-01-30  0:15 ` Bastien
2014-01-30  0:22   ` John Hendy
2014-01-30  7:17     ` Ken Okada
2014-01-31  6:29       ` John Hendy
2014-01-31  7:11         ` Nick Dokos
2014-02-03 22:13           ` Marcin Borkowski
2013-11-06  6:13 Cecil Westerhof
2013-11-06  8:32 ` Bastien
2013-11-06  8:42 ` Bastien
     [not found]   ` <CAG-LmmDGaczy8pyeCTU6-YJ9oTBeEufqU6kC2PUb-U6ucexhZA@mail.gmail.com>
     [not found]     ` <87txfpaeli.fsf@bzg.ath.cx>
     [not found]       ` <CAG-LmmDFjqbuqfF1YJoeX6x_UdujK+0noeFcGSD15hs49Tbo=Q@mail.gmail.com>
2013-11-06 18:38         ` Cecil Westerhof
2013-10-11  7:14 "Recent items" Agenda view? Martin Beck
2013-10-11 20:35 ` Samuel Wales
2013-10-14  8:46   ` (no subject) Martin Beck
2013-03-07 20:37 [RFC] Org syntax (draft) Nicolas Goaziou
2013-03-08 10:39 ` was: " Andreas Röhler
2013-03-08 10:46   ` (no subject) Bastien
2013-03-08 10:59     ` Andreas Röhler
2013-03-08 11:05       ` Bastien
2013-03-08 11:18         ` Andreas Röhler
2013-03-08 11:23           ` Bastien
2013-03-08 13:00             ` Andreas Röhler
2013-03-08 13:12               ` Bastien
2013-03-08 15:22                 ` Andreas Röhler
2013-03-08 15:40                   ` Bastien
2013-03-08 20:39                     ` T.F. Torrey
2013-03-08 21:19                       ` Nicolas Goaziou
2013-03-08 21:57                         ` Suvayu Ali
2013-03-09 14:09                       ` Bastien
2013-03-10 22:40                         ` T.F. Torrey
2013-03-03  0:55 Vikas Rawal
2013-01-29  9:43 Martin Beck
2013-01-30 12:12 ` Bernt Hansen
2013-01-24 12:11 Herbert Sitz
2013-01-15 19:26 Rick Frankel
2012-11-11 15:36 Fabrice Popineau
2012-11-11 23:09 ` Nicolas Goaziou
2012-11-12  7:40   ` Fabrice Popineau
2012-11-07 18:50 Kevin Buchs
2012-09-29  7:30 Neuwirth Erich
2012-09-29  7:39 ` Bastien
2012-09-29  8:09   ` Achim Gratz
2012-09-29  9:12     ` Bastien
2012-09-29  9:52 ` Achim Gratz
2012-08-24 16:21 Feiming Chen
2012-05-11 20:56 Rick Frankel
2012-05-11 20:38 ` Eric Schulte
2012-05-11 22:43   ` Bernt Hansen
2012-05-17  6:23   ` Bastien
2012-01-23 12:00 Tom Regner
2012-01-23 16:34 ` Tom Regner
2012-01-23 20:31 ` Eric Schulte
2012-01-24  1:55   ` Tom Regner
2012-01-05 17:36 Ab Cd
2011-08-06  1:19 Vikas Rawal
2011-02-23  4:41 Jay Bingham
2011-02-21 22:13 Vincent-Xavier JUMEL
2011-02-23 19:52 ` Bernt Hansen
2011-02-23 19:54 ` Bernt Hansen
2011-04-09  9:41   ` Vincent-Xavier JUMEL
2010-10-25  6:44 A. Soare
2010-10-16  4:59 Richard Stallman
2010-10-16  6:08 ` Werner LEMBERG
2010-10-16  6:10   ` Werner LEMBERG
2010-10-18  6:26   ` Richard Stallman
2010-10-19 18:28 ` Glenn Morris
2010-09-30  8:02 Jambunathan K
2010-06-29 17:50 amscopub-mail
2010-01-15 16:27 Drew Adams
2009-09-18 12:35 Robin Green
2009-02-17 18:57 Matthew Lundin
2009-02-17 20:26 ` Carsten Dominik
2008-08-09 18:09 dr-dr xp
2008-03-24  1:00 Xavier Maillard
2008-02-25  8:17 Herbert Euler
2008-02-07 10:01 jpff
2008-02-07  6:51 jpff
2008-01-28 11:20 Dimitris Kapetanakis
2008-01-29  9:39 ` Bastien Guerry
2007-11-13 20:35 François Puitg
2007-10-21  2:41 Guangyi Wang
2007-10-20 10:33 Kevin Brubeck Unhammer
2007-10-21 22:20 ` Bastien
2007-04-18 20:21 A Soare
2007-04-19 16:03 ` Stefan Monnier
2007-03-21 11:04 A Soare
2007-03-12  8:51 A Soare
2007-03-13  4:12 ` Kevin Rodgers
2007-02-21 22:31 A Soare
2007-01-29 22:19 William Hanlon
2006-12-21  6:55 Werner LEMBERG
2006-12-21 18:43 ` Kevin Rodgers
2006-12-28 14:17   ` Slawomir Nowaczyk
2006-09-02 18:08 Richard Stallman
2006-07-25 17:33 amcorreia
2006-06-26 12:54 amcorreia
2006-06-27 16:14 ` Richard Stallman
2006-06-02  3:14 Richard Stallman
2006-06-13 20:32 ` Chong Yidong
2006-05-25 10:43 Thomas Baumann
2006-05-25 12:49 ` Carsten Dominik
2006-03-07 23:39 Amir Bukhari
2006-01-24 11:59 Steve Pitchers
2005-10-28 12:48 Neon Absentius
2005-10-28 12:20 Ahmadshah
2005-10-28  8:46 MEJORES SEMINARIOS EN PUEBLA
2005-10-28  8:46 MEJORES SEMINARIOS EN PUEBLA
2005-10-28  1:38 SHestbrooke
2005-10-22 11:30 Afrael
2005-10-10 10:58  
2005-10-06 21:07 Jonas Metz
2005-10-02  2:11 Kajane
2005-09-25 15:20 Sigita
2005-09-25  9:42 Taneev
2005-09-15  9:32 Baron
2005-09-12  0:34 Stalina
2005-09-08 21:25 Cahal Brittingham
2005-09-08 20:19 Alafir
2005-09-06  0:37 ACTUALIZACION DE CALIDAD
2005-09-02 12:52 Esias
2005-09-02 12:20 Alimgereiy
2005-08-31 10:14 David PONCE
2005-08-25 17:47 SEMINARIOS  ESPECIALIZADOS QUERETARO
2005-08-25 17:45 SEMINARIOS  ESPECIALIZADOS QUERETARO
2005-08-16  4:12 Rareness I. Seinfeld
2005-08-10  3:38 Despot P. Erich
2005-08-09  9:27 Ale Costa
2005-07-28 22:21 b.jc-emacs
2005-07-13 12:20 彩民福星
2005-07-06 18:16 dfasd
2005-07-05  2:14 Zeng
2005-07-04  4:13 r.reichlin
2005-06-22 20:23 bsv3b
2005-06-14 14:43 zuotaoming
2005-06-09  5:45 tc
2005-06-09  5:15 sia
2005-06-08  7:11 Alec
2005-06-04  0:56 Luc Teirlinck
2005-06-03 11:25  
2005-06-01  3:47  
2005-05-31 19:49 uiuew_qqy
2005-05-30 23:47 ywieyow
2005-05-30 18:26 弄潮儿
2005-05-26 23:06 深圳群力科技
2005-05-21  5:03 Brent Knapp
2005-05-21  5:00 Charity Donahue
2005-05-19 22:48 info
2005-05-18 10:04 Devon D. Courtney
2005-05-18  9:39 Reid L. Clarke
2005-05-17  2:17 Kenichi Handa
2005-05-09 11:17 kilojy
2005-05-06 22:49 loot
2005-05-06  7:54 xgyhl
2005-05-05 12:27 support@speed123.com
2005-05-03 10:44 John Knottenbelt
2005-05-01  9:47 hello
2005-04-28 17:03 易友商务
     [not found] <01c54b24$Blat.v2.4$0ddb2a20@zahav.net.il>
2005-04-28 11:00 ` Richard Stallman
2005-04-28 18:56   ` Eli Zaretskii
2005-04-29 10:14     ` Richard Stallman
2005-04-26  4:11 CoWiz
2005-04-23  5:42 AdolfBush
2005-04-22  7:37 smartlitchi
2005-04-22  8:01 ` Eli Zaretskii
2005-04-21 13:14 海燕
2005-04-21 12:44 海燕
2005-04-21 11:42 海燕
2005-04-18 16:06 本元正阳
2005-04-18  9:34 Felix Cohen
2005-04-17 22:15 jhigr
2005-04-13  9:49 uyuiyu
2005-04-13  6:26 luca.spinacci
2005-04-11 20:55 weather
2005-04-11 17:51 kjuhgyftgj
2005-04-01 15:37 Jay Cotton
2005-03-29  2:13 Nora Bergeron
2005-03-26 19:53 Raimund Kohl-Fuechsle
2005-03-26 22:15 ` Eli Zaretskii
2005-03-16 21:16 Ervin Milton
2005-03-12 23:54 SecureGroup
2005-03-08 14:48 Gian Uberto Lauri
2005-03-02  4:15 Pauline Poe
2005-03-02  2:26 Chong Yidong
2005-03-02  3:02 ` Luc Teirlinck
2005-02-06 21:01 romeomedina
2005-01-23 18:16 Ashley Greene
2005-01-21 21:48 Luc Teirlinck
2005-01-18  9:46 Google
2005-01-16 16:55 Georgia Jaramillo
2005-01-16  1:10 vr
2005-01-11 21:12 Juliet G. Doherty
2005-01-11 19:06 Kishor Aggarrwal
2005-01-11 19:01 Kishor Aggarrwal
2005-01-11 18:05 Kishor Aggarrwal
2005-01-11 17:11 Kishor Aggarrwal
2005-01-11 17:06 Kishor Aggarrwal
2005-01-11 16:59 Kishor Aggarrwal
2005-01-11 14:05 Kishor Aggarrwal
2005-01-10 11:26 Eliseo Flanagan
2005-01-08  0:06 tvpeq
2005-01-04  5:06 cmujmocyjezp
2004-12-31 22:07 kongfyejsagjcb
2004-12-31 19:08 Bryce L. Acevedo
2004-12-31  8:45 Millie D. Frey
2004-12-26  8:57 Subscribe.Ru
2004-12-26  8:57 Subscribe.Ru
2004-12-26  5:23 Hazel Whitaker
2004-12-24  7:11 okyyoyws
2004-12-21 10:40 Anna Nguyen
2004-12-15 19:27 Clifton Ibarra
2004-12-12 16:12 Cornell Kuhn
2004-12-08  6:49 Han Boetes
2004-12-08 13:17 ` Stefan Monnier
2004-12-08 13:31   ` Han Boetes
2004-12-06  8:41 Andrew Kirilenko
2004-12-04  7:35 runyoef
2004-12-03 13:33 Frank J. Hall
2004-12-02 19:32 Angie Durham
2004-12-02 17:43 perfect butts
2004-12-02  8:42 Shelley Herrera
2004-12-02  6:19 Casey Hammond
2004-11-30 21:51 Charles Mberi Kimpolo
2004-11-29 21:56 Milford Young
2004-11-27  9:56 Leanne Bean
2004-11-02  5:05 Alexandru Cardaniuc
2004-11-02 21:43 ` Eli Zaretskii
2004-10-28  0:21 Wiley Reid
2004-10-25 16:19 Robby Cherry
2004-10-24  3:36 Clarence B. Capps
2004-10-22 22:14 Luc Teirlinck
2004-10-22  1:50  Vargas
2004-10-22  1:45  Guerra
2004-10-21  9:19 Aldo Mcintosh
2004-10-20  5:35  Mcdermott
2004-10-19 22:39 not.real
2004-10-19 16:40 Amelia Spivey
2004-10-19 12:08 Meagan Adams
2004-10-14 19:23 Allan Hendrickson
2004-10-14 19:23 Loretta Roe
2004-10-14 19:23 Lilly Pryor
2004-10-14 19:23 Isaiah Ham
2004-10-14 19:23 Levi Miller
2004-10-14 19:23 Eldon Irwin
2004-10-14 13:09 Frances Devine
2004-10-12  9:23 Bertha B. Herbert
2004-10-12  4:04 info
2004-10-11 18:09  Eddy
2004-10-10  1:27 Eldon Curran
2004-10-10  0:10 Drew Adams
2004-10-09 13:36 Antoine Heard
2004-10-09 13:36 Tommie Bullock
2004-10-09 13:36 Dave Daugherty
2004-10-09 13:36 Maria Key
2004-10-09 13:36 Carmen Hill
2004-10-09 13:36 German Mcgowan
2004-10-09 13:36 Dana Fisher
2004-10-09 13:36 Becky Sorensen
2004-10-08 15:19 May Dixon
2004-10-08  8:04 Geoffrey Spears
2004-10-06 20:57 Malinda Garland
2004-10-03 22:36 Rogelio Lott
2004-10-01 21:34 Clara Maher
2004-10-01 21:32 Duane Dahl
2004-09-27  0:32 Luc Teirlinck
2004-09-27 14:53 ` Richard Stallman
2004-09-27 22:17   ` Luc Teirlinck
2004-09-26  6:30 Drew Adams
2004-09-14  2:06 Alyse
2004-09-07 10:00 Eugene Kurbatov
2004-09-01 15:46 Janessa
2004-09-01 15:46 Julissa
2004-08-23  7:04 handa
2004-08-14  5:56 Gary
2004-08-09 23:32 All
2004-08-09 23:32 Webmasters
2004-08-09 23:02 Fido
2004-08-09 22:48 Coon
2004-08-09 22:11 All
2004-08-09 21:45 Webmasters
2004-08-09 21:45 Help-gnu-emacs
2004-08-09 21:07 Ast
2004-08-09 20:54 Webmasters
2004-08-09 20:48 Daniel
2004-08-09 20:05 Help-gnu-emacs
2004-08-09 20:04 Webmasters
2004-08-09 19:28 Help-gnu-emacs
2004-08-09 19:27 Webmasters
2004-08-09 18:57 Help-gnu-emacs
2004-08-09 18:51 Ilisp-request
2004-08-09 17:55 Daniel
2004-08-06 10:59 Zane Cross
2004-08-05 21:14 Post Office
2004-08-01  9:22 Eugene Kurbatov
2004-08-02  4:03 ` Eli Zaretskii
     [not found] ` <mailman.2403.1091419776.1960.bug-gnu-emacs@gnu.org>
2004-08-02 15:35   ` Kevin Rodgers
2004-07-29  6:40 Jan D.
2004-07-27 19:43 Mail Administrator
2004-07-27  7:01 Returned mail
2004-07-26 16:06 Bounced mail
2004-07-26 14:24 Post Office
2004-07-19  0:00 网络营销软件
2004-07-18 19:32 深圳云风实业有限公司
2004-07-16 16:12 Moore, Jerry C
2004-07-17  6:42 ` Michael Olson
2004-07-13 10:39 goldlineco
2004-07-09 14:46 goldlineco
2004-07-04  6:47 haoxiangchenggong
2004-07-04  6:47 haoxiangchenggong
2004-07-01 22:22 Mufaddal Borsadwala
2004-07-01 23:11 ` Kevin Rodgers
2004-06-17  8:48 fanjf
2004-06-09 15:21 Kazuto Asai
2004-05-29 23:35 qjclove2
2004-05-29 23:35 qjclove2
2004-05-27 11:34 Stephan Stahl
2004-05-14  4:42 Katrina Bliss
2004-05-11 22:26 Jordan Clarke
2004-05-04  6:54 Dhruva Krishnamurthy
2004-05-03  7:44 Nicole Delarosa
2004-04-29  6:51 Karl Wuerfl
2004-04-21 10:17 Eliza Marcus
2004-04-20 14:58 Альбина
2004-04-19 14:49 Robbie Clinton
2004-04-17 16:03 Delores Bacon
2004-04-03 23:08 Elinor Acevedo
2004-04-02  7:03 Margo Stanton
2004-03-14 14:09 nihao
2004-02-24 17:24 Alyson
2004-02-23  5:07 niDapeng
2004-02-13 14:28 D. Scott Davidson
2004-02-03  0:29 admail.direct
2004-02-02 21:09 admail.direct
2004-02-01  5:52 Walden Teri
2004-01-31  0:56 Lutz Julianne
2004-01-30 15:49 aiawcabyebljn
2004-01-26  6:42 Al
2004-01-24  8:39 Alexis
2003-12-23 22:57 Joel
2003-12-19  2:32 Funakoshi Riyuutarou
2003-11-17  2:05 Luc Teirlinck
2003-11-17  6:12 ` Jan D.
2003-11-04 21:04 Nathalie Glashow
2003-11-04 22:29 ` Dan Anderson
2003-11-05 16:08   ` Arthur Davis
2003-11-05  8:38 ` Gian Uberto Lauri
2003-10-16  4:53 Yamamoto Mai
2003-10-02 19:34 Chenna Arnoori
2003-10-03 18:47 ` Eli Zaretskii
2003-09-18 22:40 george mbulu
2003-09-16 16:55 Matthieu ROCHE 
2003-08-27  7:17 Saori Tsubochi
2003-08-16  8:11 buger
2003-08-10  0:05 shuki_duv
2003-08-11 12:53 ` Richard Stallman
2003-08-12 13:11   ` shuki_duv
2003-08-12 23:19     ` Miles Bader
     [not found]     ` <shuki_duv@yahoo.com>
2003-08-14 12:35       ` Thien-Thi Nguyen
2003-06-11 22:56 (No Subject) Jessy Fershun
2002-11-23 12:11 (no subject) jeanmax laborie
2002-11-06  6:33 21.2.90 pretest, 21.3, 21.4 Eli Zaretskii
2002-11-06 12:40 ` Kim F. Storm
2002-11-07  8:08   ` (no subject) Kenichi Handa
2002-11-08 12:06     ` Richard Stallman
2002-09-09 15:53 Text mode menu wishlist Sacha Chua
2002-09-09 17:27 ` Alex Schroeder
2002-09-10  1:45   ` Sacha Chua
2002-09-10  7:41     ` Thien-Thi Nguyen
2002-09-10  7:48       ` Miles Bader
2002-09-10  8:35         ` (no subject) Thien-Thi Nguyen
     [not found] <mailman.1031207825.3342.help-gnu-emacs@gnu.org>
2002-09-05 10:11 ` Peter Wu
2002-08-30 13:23 Dhruva Krishnamurthy
2002-08-10 17:16 Richard Stallman
2002-08-10 17:51 ` Simon Josefsson
2002-08-11  3:56   ` Richard Stallman
2002-08-09 15:57 nOrh Loudspeaker
2002-08-09  4:06 Stanley Udoh
2002-08-03 21:46 kailash
2002-08-03 12:09 ÀÚ¸®ÀÎ
2002-07-31 20:13 John Udeh
2002-07-31  2:03 John Udeh
2002-07-30 15:19 biz
2002-07-25  3:29 Free Concert Tickets!
2002-07-25  1:33 Free Concert Tickets!
2002-07-25  1:33 Free Concert Tickets!
2002-07-03  3:52 Fairhand
2002-07-03  3:52 Fairhand
2002-07-03  0:02 Fairhand
2002-07-03  0:02 Fairhand
2002-07-02 13:30 Fairhand
2002-07-01 21:03 Fairhand
2002-06-30  5:42 maxmall77
2002-06-17 19:42 ¿Í¿ìÄ¿ÇÇ
2002-06-10 15:12 shs
2002-06-03 22:00 Gabriel C Millerd
2002-06-02 18:04 genetics
2002-05-23 18:30 pampita
2002-05-22 10:29 mailer
2002-05-22 10:29 mailer
2002-05-22  0:43 Çϳª·Î
2002-05-18  1:18 ¼¼½º¿µ¾î»ç
2002-05-17 14:07 Don Huk
2002-05-13  4:27 Shibata Keisuke
2002-05-04  8:27 ÀÌÀü¿Á
2002-05-04  8:27 ÀÌÀü¿Á
2002-05-02 19:37 laurent mpeti kabila
2002-04-26 18:18 c burke
2002-04-21  4:35 faxin01
2002-04-21  4:35 faxin01
2002-04-07 23:29 Ulrich Neumerkel
2002-04-07  8:34 Á¦ÁÖ ÇѶó¸®Á¶Æ®
2002-04-01 17:45 Â÷Á
2002-03-29  8:07 ´ºÆ®¸®¼Ç Æ÷ ¶óÀÌÇÁ
2002-02-23 16:11 ctext-pre-write-conversion barfs Tak Ota
2002-02-23 18:51 ` (no subject) Eli Zaretskii
2002-02-23 23:11   ` Tak Ota
2002-02-21 13:16 Å©·¹ÀÌÁö
1999-01-02  0:59 dr, garuba umar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87r4u031ye.fsf@gmail.com \
    --to=n.goaziou@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=mark@kli.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.