unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Helmut Eller <eller.helmut@gmail.com>
To: David Engster <deng@randomsample.de>
Cc: emacs-devel@gnu.org
Subject: Re: Emacs contributions, C and Lisp
Date: Mon, 12 Jan 2015 21:01:53 +0100	[thread overview]
Message-ID: <m2y4p7daz2.fsf@gmail.com> (raw)
In-Reply-To: <87y4p7rgf5.fsf@engster.org> (David Engster's message of "Mon, 12 Jan 2015 19:40:30 +0100")

On Mon, Jan 12 2015, David Engster wrote:

> Helmut Eller writes:
>> On Sun, Jan 11 2015, David Engster wrote:
>>
>>> AFAIK, this is not possible with a mere GCC
>>> plugin.
>>
>> So what was your plan (or code, if any) before you abandoned this
>> project?

Thanks for the detailed answer!

> The first step would have been to replace our existing C++ parser with
> the AST that is produced by GCC. The plugin would output the same LISP
> structures that Semantic uses.

I'm a bit confused because at one side you seem to say that certain
things are not possible with plugins but at the other side you seem to
think that plugins can dump enough information to make these things
possible.

> My work so far was mainly to investigate
> how C++ types are actually stored in the AST. Especially the template
> stuff is pretty weird, and documentation is sparse. Fortunately, the
> headers are pretty well commented, but it still involves a *lot* of
> trial and error.

I can imagine that templates are complicated.  I tried to implement a
find-definition command as a GCC plugin.  My first approach was to
search the smallest subtree that contains a particular source location.
That didn't work out because GCC doesn't record "source ranges" so it's
difficult to know if a tree covers a particular location.  Another
problem is that identifiers are resolved early eg. "x + y" produces a
PLUS_EXPR (with the source location pointing to the + sign) but the
arguments are pointers to the VAR_DECLs of x and y and the source
location of those VAR_DECLs is typically a few lines earlier.

In a second attempt I made Emacs insert a custom #pragma at the place
where we want to search for a definition; similar to the gccsense
approach.  Plugins can register pragmas and that way have access to the
lexer.  That kinda works but the problem is that pragmas are only
allowed in certain places (eg. at the end of a statement) and Emacs has
to guess where those places are.

> The actual "semantic" part of parsing C++ would still be handled by
> Emacs' Semantic package. For instance, it would calculate
> completions. So obviously, those completions wouldn't match those from
> libclang w.r.t. to accuracy, but they would be *much* better than they
> are now, especially because the preprocessor is already handled, which
> is currently one of Semantic's main problems. Also, type inference would
> already be done by GCC, so you would see the resulting type from 'auto'
> and such.

Is the idea is to let GCC output some "global" information like type
declarations to enable better "local" parsing of function bodies in
Emacs?  Or do you want to do pretty much all parsing in GCC?

> One main problem would be how to parse the file you're currently working
> on, since it usually unparseable. I don't have a good answer for
> that. We would have our internal parser as fallback, but I would think
> that we could also try to internally make the file parseable before
> sending it to GCC. It would probably be very messy and involve a lot of
> closing braces.

Completion seems to be difficult problem. find-definition looks simpler
and perhaps better as a first step.

> So in a nutshell, for people familiar with clang: my approach is more
> like using libtooling/libast than libclang.

I know libclang only a bit and libtooling/libast not at all.  What I
failed to implement is like libclang's clang_getCursor.

[...]
> My plan was also to make this plugin usable for other tools. That means,
> it should not only output LISP structures, but alternatively also JSON
> and possibly XML. For instance, an external tool could build a symbol
> database for providing references. This could also serve as a starting
> point for doing refactoring. For more complicated tasks, the plugin
> could provide an AST matcher which you can query with certain
> expressions.

In general I think the heavy lifting should be done in GCC+plugin and
Emacs should only do the "easy" stuff like displaying the result.  But
for performance and other reasons it might be necessary to do at least
some parsing in Emacs too.

Helmut



  reply	other threads:[~2015-01-12 20:01 UTC|newest]

Thread overview: 523+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [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  4:24           ` Dmitry Gutov
2014-02-12 14:26             ` Stefan Monnier
2014-02-12 15:10               ` Dmitry Gutov
2014-02-13  0:13                 ` Stefan Monnier
2014-02-13  3:06                   ` Dmitry Gutov
2014-02-13 13:17                     ` Stefan Monnier
2014-02-12 14:23           ` Stefan Monnier
2014-02-13  3:28             ` Dmitry Gutov
2014-02-13 13:28               ` Stefan Monnier
2014-02-13 13:46                 ` David Kastrup
2014-02-13 15:59                   ` Stefan Monnier
2014-02-13 16:07                   ` Eli Zaretskii
2014-02-13 14:12                 ` Dmitry Gutov
2014-02-13 16:09                   ` Eli Zaretskii
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 15:30                                       ` David Kastrup
2014-02-14 15:38                                         ` Dmitry Gutov
2014-02-14 15:55                                           ` David Kastrup
2014-02-14 18:36                                           ` Eli Zaretskii
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-19 19:05                                                         ` Emacs contributions, C and Lisp (was: Re: /srv/bzr/emacs/trunk r101338: ...) Jorgen Schaefer
2014-02-19 19:16                                                           ` Eli Zaretskii
2014-02-24 20:43                                                         ` Emacs contributions, C and Lisp 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 [this message]
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
2014-02-16 18:52                                             ` Emacs contributions, C and Lisp (was: Re: /srv/bzr/emacs/trunk r101338: ...)) E Sabof
2014-02-15  5:52                                 ` /srv/bzr/emacs/trunk r101338: * lisp/emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch Michael Welsh Duggan
2014-02-15  7:28                                   ` Eli Zaretskii
2014-02-17  2:40                                     ` Stefan Monnier
2014-02-17  2:57                                       ` Dmitry Gutov
2014-02-17 14:35                                         ` Stefan Monnier
2014-02-17  3:00                                       ` Juanma Barranquero
2014-02-17 14:34                                         ` Stefan Monnier
2014-02-17 17:21                                           ` Dmitry Gutov
2014-02-17 23:42                                             ` Stefan Monnier
2014-02-17  5:23                                       ` Eli Zaretskii
2014-02-17 16:34                                       ` /srv/bzr/emacs/trunkr101338:*lisp/emacs-lisp/syntax.el(syntax-ppss): More sanitycheck to catchcatch E Sabof
2014-02-17 17:33                                         ` Dmitry Gutov
2014-02-18  6:54                                           ` E Sabof
2014-02-14 15:19                               ` /srv/bzr/emacs/trunk r101338:*lisp/emacs-lisp/syntax.el(syntax-ppss): More sanity check to catchtch E Sabof
2014-02-14 15:25                                 ` Dmitry Gutov
2014-02-14 15:38                                   ` E Sabof
2014-02-16  1:52                                     ` Dmitry Gutov
2014-02-16 10:42                                       ` E Sabof
2014-02-16 16:43                                         ` Dmitry Gutov
2014-02-16 17:48                                           ` E Sabof
2014-02-16 18:29                                             ` Dmitry Gutov
2014-02-16 19:01                                               ` E Sabof
2014-02-17  2:54                                                 ` Stefan Monnier
     [not found]                           ` <<83d2iqc84m.fsf@gnu.org>
2014-02-14 17:22                             ` /srv/bzr/emacs/trunk r101338: * lisp/emacs-lisp/syntax.el (syntax-ppss): More sanity check to catch Drew Adams
2014-02-14 14:10                         ` Stefan Monnier
2014-02-14 14:38                           ` Eli Zaretskii
2014-02-14 16:53                             ` Stefan Monnier
2014-02-14 18:21                               ` Eli Zaretskii
2014-02-14 20:53                                 ` Stefan Monnier
2014-02-14 14:23                       ` Stefan Monnier
2014-02-14 15:08                         ` Dmitry Gutov
2014-02-14 17:08                           ` Stefan Monnier
2014-02-16  2:01                             ` Dmitry Gutov
2014-02-17  2:42                               ` Stefan Monnier
2014-02-20 15:52                         ` Davis Herring
2014-02-20 21:28         ` Andreas Röhler
2014-02-26 15:12 Emacs contributions, C and Lisp Barry OReilly
2014-02-26 16:32 ` Eli Zaretskii
  -- strict thread matches above, loose matches on Subject: below --
2014-03-11 13:51 Barry OReilly
2014-03-12  0:09 ` Richard Stallman
2015-01-10 23:45 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 15:37       ` 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

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=m2y4p7daz2.fsf@gmail.com \
    --to=eller.helmut@gmail.com \
    --cc=deng@randomsample.de \
    --cc=emacs-devel@gnu.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 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).