unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: Emacs contributions, C and Lisp
@ 2015-01-10 23:45 Jacob Bachmeyer
  2015-01-11 10:00 ` David Engster
  2015-01-11 10:15 ` David Kastrup
  0 siblings, 2 replies; 442+ messages in thread
From: Jacob Bachmeyer @ 2015-01-10 23:45 UTC (permalink / raw)
  To: emacs-devel

I've been reading this in the list archives and as a long-time GNU/Linux 
user, feel the need to chime in.

Perhaps there is a better option?  I seem to remember efforts to adapt 
Guile to run Emacs Lisp and then to port Emacs to run using Guile 
instead of its own runtime.  I'm not certain of the difficulty, but 
perhaps GCC could be, over time, moved towards an option to build as 
Guile extensions?  I haven't looked far enough into this to know if it 
is feasible, or how much work would be needed, or if I'm completely 
mistaken and it isn't feasible at all.

Obviously, it should still be possible to build "stand-alone GCC", but 
having the compiler be available from Guile could easily solve the issue 
at hand here, especially if the extension presents a Lisp-like API for 
the GCC internal structures.  This would also address the concerns about 
the GCC front-end being abused to feed nonfree backends, since the tree 
would only be present in memory behind a GPL interface.

But this is years away at best and doesn't solve the immediate problem, 
which is that Emacs needs a parse tree "now".  There are three options 
for how to get that:

(1)  Write a C parser in Emacs Lisp.
(2)  Get the AST from GCC.
(3)  Get the AST from Clang.

Option (1) leads to an Emacs C Compiler and fully self-hosting Emacs, 
which is both interesting and an insane duplication of effort.  Option 
(2) has the advantage that it would ensure full support for GNU C, but 
the problem of actually getting the parse tree from GCC without 
weakening GCC's copyleft.  Option (3) has the advantage that no one will 
object to dumping an AST from Clang, but Clang isn't a GNU project and 
has incomplete support for GNU C.

A more useful question is "How can GCC most efficiently provide an AST 
to Emacs?"  Part of the answer is that Emacs already has the complete 
text of every file involved.  Emacs doesn't care what the name of a 
variable is--that's already in the buffer.  Emacs cares what part of the 
buffer corresponds to a variable name.  Dumping an AST that contains 
only annotations to text, referring to positions in the source files 
instead of actually including text in the AST, looks to me like a good 
middle ground.  Such an AST (which I will call a "refAST" because it 
contains only references to program source text) would be a significant 
pain to use as compiler input, since the symbol names are missing, while 
also being exactly the information that an editor needs.  We can make it 
harder to use the refAST to abuse the GCC frontend by the same expedient 
that makes the refAST easier for Emacs to read.  Emacs already has the 
source text, why force it to read duplicates from the AST dump?

Further, the refAST needs to resemble the source text as closely as 
possible.  Most of GCC's value is from the optimizer and code 
generators.  Parsing is relatively simple compared to the rest of GCC.  
If the refAST is dumped after optimization, it will be next to useless 
for editing the source.  So the refAST must be dumped prior to any 
optimization.  My knowledge of GCC internals is lacking, but a glance at 
gccint suggests that Emacs needs a dump of GENERIC, which, incidentally, 
can "also be used in the creation of source browsers, intelligent 
editors, ..." 
(<URL:http://gcc.gnu.org/onlinedocs/gccint/C-and-C_002b_002b-Trees.html>).  
Further reading reveals that for better or for worse, this ship has 
already sailed and GCC has had an option to dump GIMPLE representation, 
which is probably far more useful for abusing the frontend than an AST 
dump, for some time now.

In short, the earlier in the GCC pipeline the parse tree is dumped, the 
more useful the dump is for editing source and the less useful the dump 
is for feeding a nonfree compiler backend.  Dumping references to source 
text, but not the text itself, simultaneously makes reading the dump 
into Emacs easier and feeding the dump into another backend harder.

My proposal:

--Immediate:
    -- GCC option for dumping refAST for editor use
       -- parse tree is dumped as early as is feasible, definitely prior 
to optimization
--Near term:
    -- Emacs Lisp ported to Guile
--Longer term:
    -- GCC buildable as Guile extensions
       -- provides full access to GCC internal structures, but only to 
Free software
    -- Emacs ported to Guile


PS:  There have been questions raised as to the use of a full syntax 
tree.  One feature that I would find useful that would be trivially 
enabled by having the syntax tree would be to make M-C-t next to a 
binary operator swap its operand expressions.  This is a contrived 
example, but shows a simple case:

      a * b +. c * d
C:    a * c +. b * d
Lisp: c * d +. a * b

The dot represents point.  The result labeled "C" is what happens 
currently.  The result labeled "Lisp" is what would happen if Emacs 
actually understood C syntax on the same level as s-expressions.  A 
refAST would enable this as a side-effect of its other uses.




^ permalink raw reply	[flat|nested] 442+ messages in thread
* Re: Emacs contributions, C and Lisp
@ 2014-03-11 13:51 Barry OReilly
  2014-03-12  0:09 ` Richard Stallman
  0 siblings, 1 reply; 442+ messages in thread
From: Barry OReilly @ 2014-03-11 13:51 UTC (permalink / raw)
  To: rms, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 384 bytes --]

Richard,

The argument was made that at the present time, writers of proprietary
compilers would choose to leverage Clang rather than GCC, even if GCC
liberalized the availability of its AST. If this is true, then there
is no longer political value to restrict GCC. You sound unconvinced
that this describes the choices software proprietors would make. Would
you expand more on that?

[-- Attachment #2: Type: text/html, Size: 435 bytes --]

^ permalink raw reply	[flat|nested] 442+ messages in thread
* Re: Emacs contributions, C and Lisp
@ 2014-02-26 15:12 Barry OReilly
  2014-02-26 16:32 ` Eli Zaretskii
  0 siblings, 1 reply; 442+ messages in thread
From: Barry OReilly @ 2014-02-26 15:12 UTC (permalink / raw)
  To: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 449 bytes --]

>> Can you list those features?
> One was already mentioned by Stephen Leake: refactoring.

Another is navigation to definitions. Last I heard, Semantic doesn't
understand C++11's "auto" keyword well enough to infer the type it
resolves to, and to enable navigation when auto is in use.

Semantic also doesn't find definitions across shared_ptr properly, eg:

  std::tr1::shared_ptr<A> a(new A);
  a->foo(); // I want to navigate straight to A::foo

[-- Attachment #2: Type: text/html, Size: 553 bytes --]

^ permalink raw reply	[flat|nested] 442+ messages in thread
[parent not found: <E1Os1zA-0006uO-PC@internal.in.savannah.gnu.org>]

end of thread, other threads:[~2015-01-20 23:31 UTC | newest]

Thread overview: 442+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-10 23:45 Emacs contributions, C and Lisp Jacob Bachmeyer
2015-01-11 10:00 ` David Engster
2015-01-12 23:21   ` Jacob Bachmeyer
2015-01-13  0:27     ` Perry E. Metzger
2015-01-13 10:16       ` David Kastrup
2015-01-11 10:15 ` David Kastrup
2015-01-12 23:20   ` Jacob Bachmeyer
2015-01-13  3:38     ` Eli Zaretskii
2015-01-13  4:56       ` Stefan Monnier
2015-01-13 14:26         ` dynamic modules progress (was: Emacs contributions, C and Lisp) Ted Zlatanov
2015-01-13 15:37       ` Emacs contributions, C and Lisp Perry E. Metzger
2015-01-13 22:38       ` Jacob Bachmeyer
2015-01-13  9:37     ` David Kastrup
2015-01-13 23:28       ` Jacob Bachmeyer
2015-01-14  9:06         ` David Kastrup
2015-01-14 19:43         ` Richard Stallman
2015-01-14 20:44           ` David Kastrup
2015-01-15  4:29             ` Richard Stallman
2015-01-15  9:10               ` David Kastrup
2015-01-15 22:01                 ` Jacob Bachmeyer
2015-01-15 22:29                   ` David Kastrup
2015-01-14 23:17           ` Jacob Bachmeyer
2015-01-15  4:29             ` Richard Stallman
2015-01-15 21:34               ` Jacob Bachmeyer
2015-01-16  2:11                 ` Richard Stallman
2015-01-16  3:47                   ` Jacob Bachmeyer
2015-01-16  4:54                     ` Daniel Colascione
2015-01-16  9:24                       ` David Kastrup
2015-01-16  9:20                     ` David Kastrup
2015-01-17  1:26                       ` Jacob Bachmeyer
2015-01-17  6:40                         ` David Kastrup
2015-01-18  3:40                           ` Jacob Bachmeyer
2015-01-18 10:00                             ` David Kastrup
2015-01-19 22:45                               ` Jacob Bachmeyer
2015-01-18 15:04                           ` Richard Stallman
2015-01-18 15:34                             ` David Kastrup
2015-01-19 22:14                               ` Jacob Bachmeyer
2015-01-20  3:18                                 ` Richard Stallman
2015-01-20  3:17                               ` Richard Stallman
2015-01-16 20:21                     ` Richard Stallman
2015-01-17  1:26                       ` Jacob Bachmeyer
2015-01-17  8:09                         ` David Kastrup
2015-01-18  9:50                       ` chad
2015-01-18 19:43                         ` Perry E. Metzger
2015-01-19  4:35                         ` Richard Stallman
2015-01-20 17:41                           ` Perry E. Metzger
2015-01-20 18:07                             ` David Kastrup
2015-01-20 23:31                             ` Richard Stallman
  -- strict thread matches above, loose matches on Subject: below --
2014-03-11 13:51 Barry OReilly
2014-03-12  0:09 ` Richard Stallman
2014-02-26 15:12 Barry OReilly
2014-02-26 16:32 ` Eli Zaretskii
     [not found] <E1Os1zA-0006uO-PC@internal.in.savannah.gnu.org>
2014-02-10 12:43 ` /srv/bzr/emacs/trunk r101338: * lisp/emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch Dmitry Gutov
2014-02-10 16:18   ` Stefan Monnier
2014-02-10 23:36     ` Dmitry Gutov
2014-02-12  1:30       ` Stefan Monnier
2014-02-12  2:49         ` Dmitry Gutov
2014-02-12 14:23           ` Stefan Monnier
2014-02-13  3:28             ` Dmitry Gutov
2014-02-13 13:28               ` Stefan Monnier
2014-02-13 14:12                 ` Dmitry Gutov
2014-02-13 16:42                   ` Stefan Monnier
2014-02-14  4:44                     ` Dmitry Gutov
2014-02-14  7:24                       ` Eli Zaretskii
2014-02-14  9:54                         ` David Kastrup
2014-02-14 10:15                           ` Eli Zaretskii
2014-02-14 14:08                             ` Dmitry Gutov
2014-02-14 14:28                               ` Eli Zaretskii
2014-02-14 14:34                                 ` Dmitry Gutov
2014-02-14 14:41                                   ` Eli Zaretskii
2014-02-14 15:15                                     ` Dmitry Gutov
2014-02-14 18:30                                       ` Eli Zaretskii
2014-02-16  1:47                                         ` Emacs contributions, C and Lisp (was: Re: /srv/bzr/emacs/trunk r101338: ...) Dmitry Gutov
2014-02-16 16:45                                           ` Eli Zaretskii
2014-02-16 17:07                                             ` Jorgen Schaefer
2014-02-16 17:36                                               ` Eli Zaretskii
2014-02-16 18:38                                                 ` Emacs contributions, C and Lisp Dmitry Gutov
2014-02-17 19:31                                                 ` Emacs contributions, C and Lisp (was: Re: /srv/bzr/emacs/trunk r101338: ...) Jorgen Schaefer
2014-02-17 20:29                                                   ` Eli Zaretskii
2014-02-18 10:00                                                     ` Emacs contributions, C and Lisp Phillip Lord
2014-02-18 15:25                                                       ` Eli Zaretskii
2014-02-18 15:31                                                         ` David Kastrup
2014-02-19  0:43                                                           ` chad
2014-02-19  3:55                                                             ` Eli Zaretskii
2014-02-19  5:33                                                               ` chad
2014-02-19 16:57                                                                 ` Eli Zaretskii
2014-02-19 16:59                                                           ` Phillip Lord
2014-02-19 16:43                                                         ` Phillip Lord
2014-02-19 17:14                                                           ` Eli Zaretskii
2014-02-18 18:00                                                       ` Glenn Morris
2014-02-19 17:10                                                         ` Phillip Lord
2014-02-19 17:57                                                           ` Glenn Morris
2014-02-20 12:07                                                             ` Phillip Lord
2014-03-26 23:55                                                             ` Michał Nazarewicz
2014-02-19  7:05                                                     ` Emacs contributions, C and Lisp (was: Re: /srv/bzr/emacs/trunk r101338: ...) Jorgen Schaefer
2014-02-19  8:35                                                       ` Emacs contributions, C and Lisp Thien-Thi Nguyen
2014-02-19  8:49                                                       ` David Kastrup
2014-02-19 17:21                                                         ` Phillip Lord
2014-02-19 17:35                                                           ` David Kastrup
2014-02-19 18:25                                                           ` Stefan Monnier
2014-02-19 19:24                                                             ` David Kastrup
2014-02-20  3:08                                                               ` Stephen J. Turnbull
2014-02-20 12:16                                                                 ` Phillip Lord
2014-03-27 12:55                                                         ` Michal Nazarewicz
2014-03-27 13:17                                                           ` David Kastrup
2014-03-28  3:15                                                           ` Stephen J. Turnbull
2014-03-28 23:20                                                             ` Richard Stallman
2014-03-28 23:40                                                               ` Glenn Morris
2014-03-29 11:36                                                                 ` Stephen J. Turnbull
2014-03-30  0:24                                                                   ` Richard Stallman
2014-03-30  2:02                                                                     ` Stephen J. Turnbull
2014-03-30 15:13                                                                       ` Richard Stallman
2014-03-31  1:28                                                                         ` Stephen J. Turnbull
2014-04-01 21:53                                                                           ` Richard Stallman
2014-04-02  5:22                                                                             ` Stephen J. Turnbull
2014-04-02  7:16                                                                               ` Stephen J. Turnbull
2014-04-02 19:59                                                                               ` Richard Stallman
2014-04-02 22:59                                                                                 ` Stefan Monnier
2014-04-03  7:24                                                                                   ` Richard Stallman
2014-03-30  0:22                                                                 ` Richard Stallman
2014-03-28 17:00                                                           ` Michal Nazarewicz
2014-03-28 17:27                                                             ` David Kastrup
2014-03-28 18:47                                                               ` Daniel Colascione
2014-03-28 19:01                                                                 ` Glenn Morris
2014-03-28 19:07                                                                   ` Daniel Colascione
2014-03-28 20:15                                                             ` Stefan Monnier
2014-03-30  0:24                                                               ` Richard Stallman
2014-03-31 18:45                                                               ` Michal Nazarewicz
2014-02-19  9:32                                                       ` Bastien
2014-02-19 17:11                                                       ` Emacs contributions, C and Lisp (was: Re: /srv/bzr/emacs/trunk r101338: ...) Eli Zaretskii
2014-02-19 17:46                                                         ` Emacs contributions, C and Lisp David Engster
2014-02-19 18:06                                                         ` Phillip Lord
2014-02-19 18:17                                                           ` Eli Zaretskii
2014-02-20 12:04                                                             ` Phillip Lord
2014-02-19 18:23                                                           ` Glenn Morris
2014-02-24 20:43                                                         ` Andreas Röhler
2014-02-25 17:14                                                           ` Richard Stallman
2014-02-26  7:08                                                             ` Stephen J. Turnbull
2014-02-27 18:06                                                               ` Richard Stallman
2014-02-28  3:47                                                                 ` Stephen J. Turnbull
2014-02-28  9:31                                                                   ` David Kastrup
2014-03-01  3:36                                                                     ` Richard Stallman
2014-03-02 16:09                                                                     ` Stephen J. Turnbull
2014-03-02 16:21                                                                       ` David Kastrup
2014-03-02 19:36                                                                         ` Stephen J. Turnbull
2014-03-02 20:17                                                                           ` David Kastrup
2014-03-03  3:43                                                                             ` Stephen J. Turnbull
2014-03-03  9:44                                                                               ` David Kastrup
2014-03-04  5:22                                                                                 ` Stephen J. Turnbull
2014-03-04  8:28                                                                                   ` David Kastrup
2014-03-04 17:19                                                                                     ` Stephen J. Turnbull
2014-03-04 17:49                                                                                       ` David Kastrup
2014-03-04 18:18                                                                                         ` Óscar Fuentes
2014-03-04 20:29                                                                                           ` David Kastrup
2014-03-04 21:21                                                                                             ` Óscar Fuentes
2014-03-05  5:20                                                                                               ` David Kastrup
2014-03-05 13:38                                                                                                 ` John Yates
2014-03-05 14:07                                                                                                   ` David Kastrup
2014-03-05 20:03                                                                                                     ` Daniel Colascione
2014-03-05 20:26                                                                                                       ` David Kastrup
2014-03-05 13:48                                                                                                 ` Óscar Fuentes
2014-03-10 19:08                                                                                           ` Richard Stallman
2014-03-11  5:08                                                                                             ` Jambunathan K
2014-03-04 19:07                                                                                         ` Stephen J. Turnbull
2014-03-04 20:32                                                                                           ` David Kastrup
2014-03-05  3:35                                                                                             ` Stephen J. Turnbull
2014-03-05 10:03                                                                                             ` Thien-Thi Nguyen
2014-03-11 11:31                                                                                             ` Jambunathan K
2014-03-03 20:36                                                                               ` Richard Stallman
2014-03-26 23:51                                                     ` Emacs contributions, C and Lisp (was: Re: /srv/bzr/emacs/trunk r101338: ...) Michał Nazarewicz
2014-03-27 10:19                                                       ` Emacs contributions, C and Lisp Phillip Lord
2014-03-27 16:39                                                         ` Eli Zaretskii
2014-03-27 17:08                                                           ` Phillip Lord
2014-03-27 17:27                                                             ` Eli Zaretskii
2014-03-27 19:25                                                             ` Michal Nazarewicz
2014-03-28  2:27                                                           ` Stephen J. Turnbull
2014-03-27 14:19                                                       ` Stefan Monnier
2014-02-17 23:58                                                   ` Stefan Monnier
2014-02-19  7:29                                                     ` Jorgen Schaefer
2014-02-18  9:54                                                   ` Phillip Lord
2014-02-17  2:59                                               ` Stefan Monnier
2014-02-17 22:41                                                 ` Richard Stallman
2014-02-18  0:20                                                   ` Stefan Monnier
2014-02-18 22:34                                                     ` Richard Stallman
2014-02-19  3:54                                                       ` Dmitry Gutov
2014-02-20 18:13                                                         ` Richard Stallman
2014-02-20 18:39                                                           ` Dmitry Gutov
2014-02-20 18:45                                                             ` David Kastrup
2014-02-20 20:51                                                               ` Dmitry Gutov
2014-02-20 23:12                                                                 ` John Yates
2014-02-20 23:53                                                                   ` David Kastrup
2014-02-21  3:45                                                                     ` John Yates
2014-02-21  7:04                                                                       ` David Kastrup
2014-02-22 16:28                                                                   ` Richard Stallman
2014-02-22 17:17                                                                     ` David Kastrup
2014-02-24 17:33                                                                       ` Richard Stallman
2014-02-24 18:13                                                                         ` David Kastrup
2014-02-25 17:15                                                                           ` Richard Stallman
2014-02-25 18:55                                                                             ` David Kastrup
2014-02-24 19:42                                                                         ` Dmitry Gutov
2014-02-24 22:37                                                                           ` David Kastrup
2014-02-25 17:14                                                                           ` Richard Stallman
2014-02-25 18:15                                                                             ` Dmitry Gutov
2014-02-25 21:21                                                                             ` Stephen Leake
2014-02-25  3:16                                                                   ` Glenn Morris
2014-02-25  6:16                                                                     ` David Kastrup
2014-02-25  9:41                                                                       ` David Kastrup
2014-02-25 14:39                                                                         ` Stephen Leake
2014-02-25 15:23                                                                           ` David Kastrup
2014-02-25 21:08                                                                             ` Stephen Leake
2014-02-25 16:25                                                                         ` Eli Zaretskii
2014-02-25 16:37                                                                           ` David Kastrup
2014-02-25 17:28                                                                             ` Eli Zaretskii
2014-02-25 19:50                                                                               ` Óscar Fuentes
2014-02-25 21:12                                                                                 ` Eli Zaretskii
2014-02-25 22:36                                                                                   ` Óscar Fuentes
2014-02-26 16:28                                                                                     ` David Engster
2014-02-26 17:08                                                                                       ` Josh
2014-02-26 17:17                                                                                         ` David Engster
2014-02-26 19:41                                                                                       ` Óscar Fuentes
2014-02-26 19:53                                                                                         ` David Engster
2014-02-26 20:59                                                                                           ` Óscar Fuentes
2014-02-26 21:44                                                                                             ` David Kastrup
2014-02-27  2:47                                                                                               ` Stefan Monnier
2014-02-26 21:19                                                                                       ` John Yates
2014-02-26 21:49                                                                                         ` David Engster
2014-02-26 23:13                                                                                           ` John Yates
2014-02-27 20:31                                                                                             ` David Engster
2014-02-27 20:41                                                                                               ` Eli Zaretskii
2014-02-28  4:37                                                                                               ` Richard Stallman
2014-02-28  6:38                                                                                                 ` Dmitry Gutov
2014-02-28  9:55                                                                                                   ` David Kastrup
2014-03-01  3:37                                                                                                   ` Richard Stallman
2014-03-01  3:58                                                                                                     ` Dmitry Gutov
     [not found]                                                                                                       ` <E1WJrVG-0001m0-FG@fencepost.gnu.org>
2014-03-01 21:57                                                                                                         ` Dmitry Gutov
2014-03-01  3:37                                                                                                   ` Richard Stallman
2014-02-28  9:51                                                                                                 ` David Kastrup
2014-03-01 21:31                                                                                                   ` Richard Stallman
2014-03-01 21:50                                                                                                     ` Eric S. Raymond
2014-03-01 23:06                                                                                                       ` David Kastrup
2014-03-02 17:18                                                                                                         ` Stephen J. Turnbull
2014-03-03 20:35                                                                                                           ` Richard Stallman
2014-03-04  6:56                                                                                                             ` Stephen J. Turnbull
2014-03-04  9:02                                                                                                               ` David Kastrup
2014-03-10 19:08                                                                                                               ` Richard Stallman
2014-03-10 23:22                                                                                                                 ` Stefan Monnier
2014-03-11  2:40                                                                                                                   ` Richard Stallman
2014-03-11  6:30                                                                                                                     ` Daniel Colascione
2014-03-11 10:55                                                                                                                       ` Jambunathan K
2014-03-16 20:32                                                                                                                       ` Richard Stallman
2014-03-11  9:26                                                                                                                     ` Thien-Thi Nguyen
2014-03-12  0:13                                                                                                                       ` Richard Stallman
2014-03-12  9:50                                                                                                                       ` Bastien
2014-03-12 13:37                                                                                                                         ` Stefan Monnier
2014-03-11 18:38                                                                                                                     ` Stefan Monnier
2014-03-12  0:12                                                                                                                       ` Richard Stallman
2014-03-12 13:36                                                                                                                         ` Stefan Monnier
2014-03-12 14:54                                                                                                                           ` David Kastrup
2014-03-13 10:04                                                                                                                           ` Florian Weimer
2014-03-14  1:02                                                                                                                             ` Richard Stallman
2015-01-02 23:25                                                                                                                           ` Richard Stallman
2015-01-03  0:24                                                                                                                             ` David Engster
2015-01-03 15:49                                                                                                                               ` Richard Stallman
2015-01-03 16:08                                                                                                                                 ` David Engster
2015-01-05 17:50                                                                                                                                   ` Richard Stallman
2015-01-05 18:30                                                                                                                                     ` Eli Zaretskii
2015-01-06 18:24                                                                                                                                       ` Richard Stallman
2015-01-06 19:39                                                                                                                                         ` Perry E. Metzger
2015-01-06 20:37                                                                                                                                           ` Eli Zaretskii
2015-01-06 20:45                                                                                                                                             ` Perry E. Metzger
2015-01-07  3:41                                                                                                                                               ` Eli Zaretskii
2015-01-07 19:25                                                                                                                                               ` Richard Stallman
2015-01-07 19:38                                                                                                                                                 ` Eli Zaretskii
2015-01-07 19:47                                                                                                                                                 ` David Kastrup
2015-01-08  2:46                                                                                                                                                   ` Richard Stallman
2015-01-08  3:38                                                                                                                                                     ` Óscar Fuentes
2015-01-08 23:59                                                                                                                                                       ` Richard Stallman
2015-01-09  0:23                                                                                                                                                         ` Óscar Fuentes
2015-01-09  8:44                                                                                                                                                           ` Eli Zaretskii
2015-01-09 17:39                                                                                                                                                           ` Richard Stallman
2015-01-09 18:48                                                                                                                                                             ` Perry E. Metzger
2015-01-09  0:43                                                                                                                                                         ` Perry E. Metzger
2015-01-09  8:48                                                                                                                                                           ` Eli Zaretskii
2015-01-09 14:17                                                                                                                                                             ` Perry E. Metzger
2015-01-09 17:39                                                                                                                                                           ` Richard Stallman
2015-01-09 18:13                                                                                                                                                             ` Perry E. Metzger
2015-01-10 19:29                                                                                                                                                               ` Richard Stallman
2015-01-10 20:34                                                                                                                                                                 ` Daniel Colascione
2015-01-12 15:37                                                                                                                                                                   ` Richard Stallman
2015-01-10 22:07                                                                                                                                                                 ` Perry E. Metzger
2015-01-10 23:11                                                                                                                                                                   ` David Kastrup
2015-01-11 10:25                                                                                                                                                                   ` Thien-Thi Nguyen
2015-01-09 18:27                                                                                                                                                             ` David Kastrup
2015-01-09 20:11                                                                                                                                                             ` Eli Zaretskii
2015-01-09 22:34                                                                                                                                                             ` Karl Fogel
2015-01-10 19:29                                                                                                                                                               ` Richard Stallman
2015-01-10 19:59                                                                                                                                                                 ` Dmitry Gutov
2015-01-10 23:40                                                                                                                                                                   ` Eric Ludlam
2015-01-09  8:36                                                                                                                                                         ` Eli Zaretskii
2015-01-08 13:32                                                                                                                                                     ` Perry E. Metzger
2015-01-08 14:26                                                                                                                                                       ` Stefan Monnier
2015-01-08 17:39                                                                                                                                                         ` Perry E. Metzger
2015-01-08 15:03                                                                                                                                                       ` David Kastrup
2015-01-08 15:21                                                                                                                                                         ` Eli Zaretskii
2015-01-08 15:49                                                                                                                                                           ` Óscar Fuentes
2015-01-08 16:19                                                                                                                                                             ` Eli Zaretskii
2015-01-09  0:02                                                                                                                                                               ` Richard Stallman
2015-01-09  0:51                                                                                                                                                                 ` Perry E. Metzger
2015-01-09  8:41                                                                                                                                                                 ` Eli Zaretskii
2015-01-09 11:14                                                                                                                                                                 ` David Kastrup
2015-01-09  0:01                                                                                                                                                             ` Richard Stallman
2015-01-09  2:23                                                                                                                                                               ` Stefan Monnier
2015-01-09 17:38                                                                                                                                                               ` Richard Stallman
2015-01-08 15:49                                                                                                                                                           ` Perry E. Metzger
2015-01-08 16:20                                                                                                                                                             ` Eli Zaretskii
2015-01-09  0:01                                                                                                                                                       ` Richard Stallman
2015-01-09  0:55                                                                                                                                                         ` Perry E. Metzger
2015-01-09  2:27                                                                                                                                                         ` Stefan Monnier
2015-01-09  2:51                                                                                                                                                         ` John Yates
2015-01-09  5:40                                                                                                                                                           ` Paul Nathan
2015-01-05 18:36                                                                                                                                     ` Perry E. Metzger
2015-01-05 19:42                                                                                                                                     ` David Engster
2015-01-06  3:24                                                                                                                                     ` Stefan Monnier
2015-01-07  4:26                                                                                                                                       ` Richard Stallman
2015-01-07  4:44                                                                                                                                         ` Stefan Monnier
2015-01-07 17:14                                                                                                                                         ` David Engster
2015-01-08  2:46                                                                                                                                           ` Richard Stallman
2015-01-08  3:19                                                                                                                                             ` Óscar Fuentes
2015-01-08  7:58                                                                                                                                             ` David Engster
2015-01-08 16:06                                                                                                                                               ` David Engster
2015-01-09  0:02                                                                                                                                                 ` Richard Stallman
2015-01-09 15:09                                                                                                                                                   ` David Engster
2015-01-10  4:06                                                                                                                                                     ` Eric Ludlam
2015-01-10 10:23                                                                                                                                                       ` David Engster
2015-01-10 10:43                                                                                                                                                         ` David Kastrup
2015-01-11  1:32                                                                                                                                                           ` Stefan Monnier
2015-01-11  1:31                                                                                                                                                         ` Stefan Monnier
2015-01-11 10:03                                                                                                                                                           ` David Kastrup
2015-01-07 17:35                                                                                                                                         ` Eli Zaretskii
2015-01-11 18:49                                                                                                                                       ` Mario Lang
2015-01-11 19:32                                                                                                                                         ` Óscar Fuentes
2015-01-11 22:25                                                                                                                                           ` Mario Lang
2015-01-11 20:06                                                                                                                                         ` Achim Gratz
2015-01-11 20:13                                                                                                                                         ` David Engster
2015-01-12 18:00                                                                                                                                           ` Helmut Eller
2015-01-12 18:40                                                                                                                                             ` David Engster
2015-01-12 20:01                                                                                                                                               ` Helmut Eller
2015-01-12 20:41                                                                                                                                                 ` David Engster
2015-01-11 20:28                                                                                                                                         ` Perry E. Metzger
2014-03-12  5:57                                                                                                                       ` Jambunathan K
2014-03-12  6:51                                                                                                                         ` Stephen J. Turnbull
2014-03-11  9:12                                                                                                                 ` Stephen J. Turnbull
2014-03-02 17:42                                                                                                       ` Richard Stallman
2014-03-02 18:27                                                                                                         ` Óscar Fuentes
2014-03-04 22:30                                                                                                       ` Florian Weimer
2014-02-28 15:55                                                                                                 ` David Engster
2014-02-28 16:57                                                                                                   ` David Kastrup
2014-02-28 17:31                                                                                                     ` Juanma Barranquero
2014-02-28 17:53                                                                                                       ` David Kastrup
2014-02-28 18:23                                                                                                         ` Juanma Barranquero
2014-02-28 20:53                                                                                                           ` David Kastrup
2014-02-28 21:48                                                                                                             ` Juanma Barranquero
2014-03-01  3:38                                                                                                               ` Richard Stallman
2014-03-01 15:34                                                                                                                 ` Stefan Monnier
2014-03-01 16:01                                                                                                                   ` David Kastrup
2014-03-01 18:03                                                                                                                   ` Eli Zaretskii
2014-03-01 21:29                                                                                                                   ` Richard Stallman
2014-03-01  6:26                                                                                                               ` David Kastrup
2014-03-01  8:15                                                                                                                 ` Eli Zaretskii
2014-03-01  8:37                                                                                                                   ` Paul Eggert
2014-03-01  9:03                                                                                                                     ` Eli Zaretskii
2014-03-01 12:53                                                                                                                   ` Thien-Thi Nguyen
2014-03-01 13:09                                                                                                                     ` David Kastrup
2014-03-01 14:53                                                                                                                       ` Thien-Thi Nguyen
2014-03-01  7:47                                                                                                           ` Eli Zaretskii
2014-03-01  7:36                                                                                                       ` Eli Zaretskii
2014-03-01 11:04                                                                                                         ` David Kastrup
2014-03-01 13:21                                                                                                           ` Óscar Fuentes
2014-03-01 14:50                                                                                                             ` Eli Zaretskii
2014-03-01 15:08                                                                                                               ` Óscar Fuentes
2014-03-01 18:02                                                                                                                 ` Eli Zaretskii
2014-03-01 19:03                                                                                                                   ` Óscar Fuentes
2014-03-01 19:27                                                                                                                     ` David Kastrup
2014-03-01 19:43                                                                                                                       ` Óscar Fuentes
2014-03-01 20:17                                                                                                                         ` David Kastrup
2014-03-01 21:30                                                                                                                           ` Óscar Fuentes
2014-03-01 19:40                                                                                                                     ` Eli Zaretskii
2014-03-01 20:12                                                                                                                       ` Óscar Fuentes
2014-03-01 20:32                                                                                                                         ` Eli Zaretskii
2014-03-01 20:47                                                                                                                           ` Óscar Fuentes
2014-03-01 20:40                                                                                                                     ` David Engster
2014-03-01 20:30                                                                                                                   ` John Yates
2014-03-01 13:52                                                                                                           ` Eli Zaretskii
2014-03-01 14:22                                                                                                             ` David Kastrup
2014-03-01 15:32                                                                                                               ` David Kastrup
2014-03-01 21:28                                                                                                             ` Richard Stallman
2014-03-02  3:45                                                                                                               ` Eli Zaretskii
2014-03-02 17:42                                                                                                                 ` Richard Stallman
2014-03-02 17:53                                                                                                                   ` Eli Zaretskii
2014-03-02 18:20                                                                                                                     ` Dmitry Gutov
2014-03-02 20:32                                                                                                                       ` Eli Zaretskii
2014-03-27 15:10                                                                                                         ` Michal Nazarewicz
2014-03-27 17:24                                                                                                           ` Eli Zaretskii
2014-03-27 19:21                                                                                                             ` Michal Nazarewicz
2014-03-28 15:24                                                                                                               ` Richard Stallman
2014-03-01 21:27                                                                                                       ` Richard Stallman
2014-02-28 19:39                                                                                                     ` David Engster
2014-03-03 20:35                                                                                                   ` Richard Stallman
2014-02-26 16:43                                                                                     ` Eli Zaretskii
2014-02-26 20:17                                                                                       ` Óscar Fuentes
2014-02-26 20:54                                                                                         ` Eli Zaretskii
2014-02-26 22:34                                                                                           ` Óscar Fuentes
2014-02-27 18:07                                                                                             ` Eli Zaretskii
2014-02-27 19:06                                                                                               ` Dmitry Gutov
2014-02-27 20:23                                                                                                 ` Eli Zaretskii
2014-02-28  1:40                                                                                                   ` Dmitry Gutov
2014-02-28  6:53                                                                                                     ` Eli Zaretskii
2014-02-28  6:58                                                                                                       ` Dmitry Gutov
2014-02-28  7:10                                                                                                         ` Eli Zaretskii
2014-02-28 12:53                                                                                                     ` John Yates
2014-02-28 14:24                                                                                                       ` Dmitry Gutov
2014-02-28 17:05                                                                                                         ` John Yates
2014-02-28 17:18                                                                                                           ` Dmitry Gutov
2014-02-27 19:08                                                                                               ` Óscar Fuentes
2014-02-27 20:32                                                                                                 ` Eli Zaretskii
2014-02-27 21:15                                                                                                   ` Óscar Fuentes
2014-02-28  6:40                                                                                                     ` Eli Zaretskii
2014-02-28  9:13                                                                                                     ` David Kastrup
2014-02-28  9:20                                                                                                       ` Daniel Colascione
2014-02-28 10:07                                                                                                         ` David Kastrup
2014-02-28 10:10                                                                                                           ` Daniel Colascione
2014-02-28 15:08                                                                                                             ` Eli Zaretskii
2014-02-28 21:51                                                                                                               ` Daniel Colascione
2014-03-01  8:00                                                                                                                 ` Eli Zaretskii
2014-03-01  8:48                                                                                                                   ` David Engster
2014-03-01 17:03                                                                                                                     ` Tom
2014-03-01 21:29                                                                                                                       ` Richard Stallman
2014-03-01 22:43                                                                                                                   ` Dmitry Gutov
2014-02-28 10:56                                                                                                           ` Óscar Fuentes
2014-02-28 11:12                                                                                                             ` David Kastrup
2014-02-28 12:14                                                                                                               ` Óscar Fuentes
2014-02-28 12:56                                                                                                                 ` David Kastrup
2014-02-28 13:13                                                                                                                   ` Óscar Fuentes
2014-02-28 13:58                                                                                                                     ` David Kastrup
2014-02-28 14:23                                                                                                                 ` Eli Zaretskii
2014-02-28 10:38                                                                                                         ` Eli Zaretskii
2014-02-28 11:00                                                                                                       ` Óscar Fuentes
2014-02-25 21:20                                                                                 ` Stephen Leake
2014-02-25 21:15                                                                           ` Stephen Leake
2014-02-26  6:13                                                                         ` Stephen J. Turnbull
2014-02-26  6:53                                                                           ` David Kastrup
2014-02-26 10:52                                                                             ` Stephen J. Turnbull
2014-02-26 11:27                                                                               ` David Kastrup
2014-02-26 17:11                                                                                 ` Stephen J. Turnbull
2014-02-21 21:23                                                             ` Richard Stallman
2014-02-19  4:30                                                       ` Stefan Monnier
2014-02-20 18:13                                                         ` Richard Stallman
2014-02-22  4:23                                                           ` Stephen J. Turnbull
2014-02-22  6:47                                                             ` David Kastrup
2014-02-22 16:03                                                             ` Tom
2014-02-22 16:13                                                               ` David Kastrup
2014-02-22 22:42                                                               ` Richard Stallman
2014-02-22 16:30                                                             ` Richard Stallman
2014-02-16 17:27                                             ` Dmitry Gutov
2014-02-16 17:50                                               ` Eli Zaretskii
2014-02-16 18:27                                                 ` Dmitry Gutov
2014-02-16 18:43                                                   ` Eli Zaretskii
2014-02-16 18:49                                                     ` Dmitry Gutov
2014-02-16 18:55                                                       ` Eli Zaretskii
2014-02-16 19:06                                                         ` Dmitry Gutov
2014-02-16 21:00                                                           ` Eli Zaretskii

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).