emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* bug-tracker
@ 2013-02-22 13:36 Andreas Röhler
  2013-02-22 14:52 ` bug-tracker Michael Albinus
  0 siblings, 1 reply; 18+ messages in thread
From: Andreas Röhler @ 2013-02-22 13:36 UTC (permalink / raw)
  To: emacs-orgmode; +Cc: Bastien

Hi folks,

when checking

http://orgmode.org/worg/org-issues.html

for bugs I'm hanting, couldn't find it.

And really, looks very homebrewn WRT org-mode itself.

What about using some of the tools around?

Mirroring the stuff at github would provide a tracker just by the way...

Cheers,

Andreas

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 13:36 bug-tracker Andreas Röhler
@ 2013-02-22 14:52 ` Michael Albinus
  2013-02-22 19:56   ` bug-tracker Andreas Röhler
  2013-02-22 20:15   ` bug-tracker David Engster
  0 siblings, 2 replies; 18+ messages in thread
From: Michael Albinus @ 2013-02-22 14:52 UTC (permalink / raw)
  To: Andreas Röhler; +Cc: Bastien, emacs-orgmode

Andreas Röhler <andreas.roehler@easy-emacs.de> writes:

> Hi folks,

Hi,

> What about using some of the tools around?
>
> Mirroring the stuff at github would provide a tracker just by the way...

Or you use debbugs.gnu.org, which hosts the Emacs bugtracker. Some of
the org bugs will arrive there anyway, from people using "M-x
report-emacs-bug".

<advertisement>
And there are debbugs.el and debbugs-gnu.el, which allow access to the
bugs from inside Emacs. I could imagine a debbugs-org.el as well, which
translates bugs into org tasks, or whatever.
</advertisement>

> Cheers,
>
> Andreas

Best regards, Michael (author of debbugs.el, coauthor of debbugs-gnu.el)

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 14:52 ` bug-tracker Michael Albinus
@ 2013-02-22 19:56   ` Andreas Röhler
  2013-02-22 20:09     ` bug-tracker Michael Albinus
                       ` (2 more replies)
  2013-02-22 20:15   ` bug-tracker David Engster
  1 sibling, 3 replies; 18+ messages in thread
From: Andreas Röhler @ 2013-02-22 19:56 UTC (permalink / raw)
  To: Michael Albinus; +Cc: Bastien, emacs-orgmode

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

Am 22.02.2013 15:52, schrieb Michael Albinus:
> Andreas Röhler <andreas.roehler@easy-emacs.de> writes:
>
>> Hi folks,
>
> Hi,
>
>> What about using some of the tools around?
>>
>> Mirroring the stuff at github would provide a tracker just by the way...
>
> Or you use debbugs.gnu.org, which hosts the Emacs bugtracker. Some of
> the org bugs will arrive there anyway, from people using "M-x
> report-emacs-bug".
>
> <advertisement>
> And there are debbugs.el and debbugs-gnu.el, which allow access to the
> bugs from inside Emacs. I could imagine a debbugs-org.el as well, which
> translates bugs into org tasks, or whatever.
> </advertisement>
>
>> Cheers,
>>
>> Andreas
>
> Best regards, Michael (author of debbugs.el, coauthor of debbugs-gnu.el)
>

Fine for me.
With exception of the noise, M-x report-emacs-bugs tends to send.

Herewith is a slim version, adapted to org-mode AFAIU




[-- Attachment #2: report-org-mode-bug.el --]
[-- Type: text/x-emacs-lisp, Size: 5454 bytes --]

(defun report-org-mode-bug (topic &optional recent-keys)
  "Report a bug in GNU Emacs.
Prompts for bug subject.  Leaves you in a mail buffer."
  ;; This strange form ensures that (recent-keys) is the value before
  ;; the bug subject string is read.
  (interactive (reverse (list (recent-keys) (concat "org-mode; "
                                                    (read-string "Bug Subject: ")
                                                    ))))
  ;; The syntax `version;' is preferred to `[version]' because the
  ;; latter could be mistakenly stripped by mailing software.
  (if (eq system-type 'ms-dos)
      (setq topic (concat emacs-version "; " topic))
    (when (string-match "^\\(\\([.0-9]+\\)*\\)\\.[0-9]+$" emacs-version)
      (setq topic (concat (match-string 1 emacs-version) "; " topic))))
  (let ((from-buffer (current-buffer))
        ;; Put these properties on semantically-void text.
        ;; report-emacs-bug-hook deletes these regions before sending.
        (prompt-properties '(field emacsbug-prompt
                             intangible but-helpful
                             rear-nonsticky t))
	(can-insert-mail (or (report-emacs-bug-can-use-xdg-email)
			     (report-emacs-bug-can-use-osx-open)))
        user-point message-end-point)
    (setq message-end-point
	  (with-current-buffer (get-buffer-create "*Messages*")
	    (point-max-marker)))
    (compose-mail report-emacs-bug-address topic)
    ;; The rest of this does not execute if the user was asked to
    ;; confirm and said no.
    (when (eq major-mode 'message-mode)
      ;; Message-mode sorts the headers before sending.  We sort now so
      ;; that report-emacs-bug-orig-text remains valid.  (Bug#5178)
      (message-sort-headers)
      ;; Stop message-mode stealing the properties we will add.
      (set (make-local-variable 'message-strip-special-text-properties) nil))
    (rfc822-goto-eoh)
    (forward-line 1)
    ;; Move the mail signature to the proper place.
    (let ((signature (buffer-substring (point) (point-max)))
	  (inhibit-read-only t))
      (delete-region (point) (point-max))
      (insert signature)
      (backward-char (length signature)))
   ;;  (with-help-window "*help-org-mode-bug*" (insert (concat "Please describe exactly what actions triggered the bug, and\n"
;; 	    "the precise symptoms of the bug.  If you can, give a recipe\n"
;; 	    "starting from `emacs -Q':\n\n"
;;
;;  "If Emacs crashed, and you have the Emacs process in the gdb debugger,\n"
;; 	    "please include the output from the following gdb commands:\n"
;; 	    "    `bt full' and `xbacktrace'.\n"
;; )))
    ;; (let ((debug-file (expand-file-name "DEBUG" data-directory)))
    ;; (if (file-readable-p debug-file)
    ;; (insert "For information about debugging Emacs, please read the file\n"
    ;; debug-file ".\n")
    ;; ))
    (add-text-properties (save-excursion
                           (rfc822-goto-eoh)
                           (line-beginning-position 2))
                         (point)
                         prompt-properties)
    (setq user-point (point))
    (insert "\n\n")
    (add-text-properties (1+ user-point) (point) prompt-properties)

    (insert "\n\nIn " (emacs-version) "\n")
    (when (and (boundp 'emacs-bzr-version)(stringp emacs-bzr-version))
	(insert "Bzr revision: " emacs-bzr-version "\n"))
    (insert "\n")
    (insert (format "Major mode: %s\n"
		    (format-mode-line
                     (buffer-local-value 'mode-name from-buffer)
                     nil nil from-buffer)))
    (insert "\n")
    ;; This is so the user has to type something in order to send easily.
    (use-local-map (nconc (make-sparse-keymap) (current-local-map)))
    (define-key (current-local-map) "\C-c\C-i" 'info-emacs-bug)
    (if can-insert-mail
	(define-key (current-local-map) "\C-cm"
	  'report-emacs-bug-insert-to-mailer))
    (setq report-emacs-bug-send-command (get mail-user-agent 'sendfunc)
	  report-emacs-bug-send-hook (get mail-user-agent 'hookvar))
    (if report-emacs-bug-send-command
	(setq report-emacs-bug-send-command
	      (symbol-name report-emacs-bug-send-command)))
    (unless report-emacs-bug-no-explanations
      (with-output-to-temp-buffer "*Bug Help*"
	(princ "While in the mail buffer:\n\n")
        (if report-emacs-bug-send-command
            (princ (substitute-command-keys
                    (format "  Type \\[%s] to send the bug report.\n"
                            report-emacs-bug-send-command))))
	(princ (substitute-command-keys
		"  Type \\[kill-buffer] RET to cancel (don't send it).\n"))
	(if can-insert-mail
	    (princ (substitute-command-keys
		    "  Type \\[report-emacs-bug-insert-to-mailer] to copy text to your preferred mail program.\n")))
	(terpri)
	(princ (substitute-command-keys
		"  Type \\[info-emacs-bug] to visit in Info the Emacs Manual section
    about when and how to write a bug report, and what
    information you should include to help fix the bug.")))
      (shrink-window-if-larger-than-buffer (get-buffer-window "*Bug Help*")))
    ;; Make it less likely people will send empty messages.
    (if report-emacs-bug-send-hook
        (add-hook report-emacs-bug-send-hook 'report-emacs-bug-hook nil t))
    (goto-char (point-max))
    (skip-chars-backward " \t\n")
    (make-local-variable 'report-emacs-bug-orig-text)
    (setq report-emacs-bug-orig-text
          (buffer-substring-no-properties (point-min) (point)))
    (goto-char user-point)))

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 19:56   ` bug-tracker Andreas Röhler
@ 2013-02-22 20:09     ` Michael Albinus
  2013-02-22 21:23       ` bug-tracker Andreas Röhler
  2013-02-22 20:10     ` bug-tracker Yagnesh Raghava Yakkala
  2013-02-22 20:50     ` bug-tracker Suvayu Ali
  2 siblings, 1 reply; 18+ messages in thread
From: Michael Albinus @ 2013-02-22 20:09 UTC (permalink / raw)
  To: Andreas Röhler; +Cc: Bastien, emacs-orgmode

Andreas Röhler <andreas.roehler@easy-emacs.de> writes:

> With exception of the noise, M-x report-emacs-bugs tends to send.
>
> Herewith is a slim version, adapted to org-mode AFAIU

Why do you want to code all the nasty bits yourself? There is
`reporter-submit-bug-report' of reporter.el, which you could customize
to your needs.

Compare, how Tramp uses it in `tramp-bug' (Ha! another advertisement!).

Best regards, Michael.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 19:56   ` bug-tracker Andreas Röhler
  2013-02-22 20:09     ` bug-tracker Michael Albinus
@ 2013-02-22 20:10     ` Yagnesh Raghava Yakkala
  2013-02-22 21:09       ` bug-tracker Andreas Röhler
  2013-02-22 20:50     ` bug-tracker Suvayu Ali
  2 siblings, 1 reply; 18+ messages in thread
From: Yagnesh Raghava Yakkala @ 2013-02-22 20:10 UTC (permalink / raw)
  To: Andreas Röhler; +Cc: Bastien, emacs-orgmode, Michael Albinus


Hello Andreas,

(I like the idea of having a function to scan user setup for org)

On Feb 23 2013, Andreas Röhler <andreas.roehler@easy-emacs.de> wrote:

> Herewith is a slim version, adapted to org-mode AFAIU

Tried to test,

I got an error.,

╭─────
│or: Symbol's function definition is void: report-emacs-bug-can-use-xdg-email
╰─────

Thanks.,
-- 
ఎందరో మహానుభావులు అందరికి వందనములు.
YYR

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 14:52 ` bug-tracker Michael Albinus
  2013-02-22 19:56   ` bug-tracker Andreas Röhler
@ 2013-02-22 20:15   ` David Engster
  2013-02-22 20:28     ` bug-tracker Michael Albinus
  1 sibling, 1 reply; 18+ messages in thread
From: David Engster @ 2013-02-22 20:15 UTC (permalink / raw)
  To: Michael Albinus; +Cc: Bastien, emacs-orgmode

Michael Albinus writes:
> Andreas Röhler <andreas.roehler@easy-emacs.de> writes:
>> What about using some of the tools around?
>>
>> Mirroring the stuff at github would provide a tracker just by the way...
>
> Or you use debbugs.gnu.org, which hosts the Emacs bugtracker. Some of
> the org bugs will arrive there anyway, from people using "M-x
> report-emacs-bug".

Is it OK to report bugs for upstream/development versions through
`report-emacs-bugs', though? I always thought this should only be used
for stuff that's actually bundled with Emacs (what about bugs in
org/contrib, for instance?).

-David

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 20:15   ` bug-tracker David Engster
@ 2013-02-22 20:28     ` Michael Albinus
  2013-02-22 20:45       ` bug-tracker David Engster
  0 siblings, 1 reply; 18+ messages in thread
From: Michael Albinus @ 2013-02-22 20:28 UTC (permalink / raw)
  To: Andreas Röhler; +Cc: Bastien, emacs-orgmode

David Engster <deng@randomsample.de> writes:

> Is it OK to report bugs for upstream/development versions through
> `report-emacs-bugs', though? I always thought this should only be used
> for stuff that's actually bundled with Emacs (what about bugs in
> org/contrib, for instance?).

debbugs.gnu.org is not only for Emacs. See
<http://debbugs.gnu.org/db/ix/packages.html> which other projects are
hosted there. "gnus" is a prominent example for a subpackage of Emacs
with an own bug package using debbugs.gnu.org.

An alternative approach is tagging bugs of a project with your package
name. See existing user tags of project emacs at
<http://debbugs.gnu.org/cgi/pkgindex.cgi?indexon=usertag;user=emacs>. "cedet"
uses this mechanism already.

And shame on me, Tramp doesn't use debbugs.gnu.org (yet).

> -David

Best regards, Michael.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 20:28     ` bug-tracker Michael Albinus
@ 2013-02-22 20:45       ` David Engster
  2013-02-23  7:36         ` bug-tracker Michael Albinus
  0 siblings, 1 reply; 18+ messages in thread
From: David Engster @ 2013-02-22 20:45 UTC (permalink / raw)
  To: Michael Albinus; +Cc: Bastien, emacs-orgmode

Michael Albinus writes:
> David Engster <deng@randomsample.de> writes:
>
>> Is it OK to report bugs for upstream/development versions through
>> `report-emacs-bugs', though? I always thought this should only be used
>> for stuff that's actually bundled with Emacs (what about bugs in
>> org/contrib, for instance?).
>
> debbugs.gnu.org is not only for Emacs. See
> <http://debbugs.gnu.org/db/ix/packages.html> which other projects are
> hosted there. "gnus" is a prominent example for a subpackage of Emacs
> with an own bug package using debbugs.gnu.org.
>
> An alternative approach is tagging bugs of a project with your package
> name. See existing user tags of project emacs at
> <http://debbugs.gnu.org/cgi/pkgindex.cgi?indexon=usertag;user=emacs>. "cedet"
> uses this mechanism already.

I know. I'm the guy who started using those tags for CEDET. :-)

I was always under the impression that those tags are merely a way for,
well, tagging bugs, so that you can search for them.  Same for
packages. I didn't know that this also implied that you're encouraged to
report bugs against upstream packages, possibly for features which are
not yet in Emacs (or may even never land there, like some stuff in
org/contrib, cedet/contrib, etc.).

-David

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 19:56   ` bug-tracker Andreas Röhler
  2013-02-22 20:09     ` bug-tracker Michael Albinus
  2013-02-22 20:10     ` bug-tracker Yagnesh Raghava Yakkala
@ 2013-02-22 20:50     ` Suvayu Ali
  2013-02-22 21:13       ` bug-tracker Andreas Röhler
  2013-02-25 15:51       ` bug-tracker Sebastien Vauban
  2 siblings, 2 replies; 18+ messages in thread
From: Suvayu Ali @ 2013-02-22 20:50 UTC (permalink / raw)
  To: emacs-orgmode

On Fri, Feb 22, 2013 at 08:56:54PM +0100, Andreas Röhler wrote:
>
> With exception of the noise, M-x report-emacs-bugs tends to send.
> 
> Herewith is a slim version, adapted to org-mode AFAIU
> 

[...]

Org already uses one of its own: org-submit-bug-report

-- 
Suvayu

Open source is the future. It sets us free.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 20:10     ` bug-tracker Yagnesh Raghava Yakkala
@ 2013-02-22 21:09       ` Andreas Röhler
  0 siblings, 0 replies; 18+ messages in thread
From: Andreas Röhler @ 2013-02-22 21:09 UTC (permalink / raw)
  To: Yagnesh Raghava Yakkala; +Cc: Bastien, emacs-orgmode, Michael Albinus

Am 22.02.2013 21:10, schrieb Yagnesh Raghava Yakkala:
>
> Hello Andreas,
>
> (I like the idea of having a function to scan user setup for org)
>
> On Feb 23 2013, Andreas Röhler <andreas.roehler@easy-emacs.de> wrote:
>
>> Herewith is a slim version, adapted to org-mode AFAIU
>
> Tried to test,
>
> I got an error.,
>
> ╭─────
> │or: Symbol's function definition is void: report-emacs-bug-can-use-xdg-email
> ╰─────
>
> Thanks.,
>

Used emacs from trunk, commenting out that section should work.

Best,

Andreas

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 20:50     ` bug-tracker Suvayu Ali
@ 2013-02-22 21:13       ` Andreas Röhler
  2013-02-25 15:51       ` bug-tracker Sebastien Vauban
  1 sibling, 0 replies; 18+ messages in thread
From: Andreas Röhler @ 2013-02-22 21:13 UTC (permalink / raw)
  To: Suvayu Ali
  Cc: Yagnesh Raghava Yakkala, Bastien, emacs-orgmode, Michael Albinus,
	David Engster

Am 22.02.2013 21:50, schrieb Suvayu Ali:
> On Fri, Feb 22, 2013 at 08:56:54PM +0100, Andreas Röhler wrote:
>>
>> With exception of the noise, M-x report-emacs-bugs tends to send.
>>
>> Herewith is a slim version, adapted to org-mode AFAIU
>>
>
> [...]
>
> Org already uses one of its own: org-submit-bug-report
>

Ah, and it collects some useful org-mode stuff.
So it remains to combine that collection with posting onto the tracker.

?

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 20:09     ` bug-tracker Michael Albinus
@ 2013-02-22 21:23       ` Andreas Röhler
  2013-02-23  7:39         ` bug-tracker Michael Albinus
  0 siblings, 1 reply; 18+ messages in thread
From: Andreas Röhler @ 2013-02-22 21:23 UTC (permalink / raw)
  To: Michael Albinus; +Cc: Bastien, emacs-orgmode

Am 22.02.2013 21:09, schrieb Michael Albinus:
> Andreas Röhler <andreas.roehler@easy-emacs.de> writes:
>
>> With exception of the noise, M-x report-emacs-bugs tends to send.
>>
>> Herewith is a slim version, adapted to org-mode AFAIU
>
> Why do you want to code all the nasty bits yourself?

Really not eager for that, as there are a lot of interesting things to do.
BTW didn't much more deleting lines...

  There is
> `reporter-submit-bug-report' of reporter.el, which you could customize
> to your needs.
>
> Compare, how Tramp uses it in `tramp-bug' (Ha! another advertisement!).
>

Hmm, maybe you are fastest just to copy a version with org-mode in the slots.

That may replace org-submit-bug-report, if Bastien and the others agree.

Andreas




> Best regards, Michael.
>

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 20:45       ` bug-tracker David Engster
@ 2013-02-23  7:36         ` Michael Albinus
  0 siblings, 0 replies; 18+ messages in thread
From: Michael Albinus @ 2013-02-23  7:36 UTC (permalink / raw)
  To: Andreas Röhler; +Cc: Bastien, emacs-orgmode

David Engster <deng@randomsample.de> writes:

> I was always under the impression that those tags are merely a way for,
> well, tagging bugs, so that you can search for them.  Same for
> packages. I didn't know that this also implied that you're encouraged to
> report bugs against upstream packages, possibly for features which are
> not yet in Emacs (or may even never land there, like some stuff in
> org/contrib, cedet/contrib, etc.).

This must be discussed with the Emacs maintainers, of course. If org
error reports will contain a substantial part of non-core Emacs
problems, an own debbugs package "org" might be better. Reports arriving
via the Emacs report chain could be reassigned to both packages
"emacs,org" then.

I recommend to contact Glenn Morris.

> -David

Best regards, Michael.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 21:23       ` bug-tracker Andreas Röhler
@ 2013-02-23  7:39         ` Michael Albinus
  2013-02-23  8:09           ` bug-tracker Andreas Röhler
  0 siblings, 1 reply; 18+ messages in thread
From: Michael Albinus @ 2013-02-23  7:39 UTC (permalink / raw)
  To: Andreas Röhler; +Cc: Bastien, emacs-orgmode

Andreas Röhler <andreas.roehler@easy-emacs.de> writes:

>> There is `reporter-submit-bug-report' of reporter.el, which you could
>> customize to your needs.
>>
>> Compare, how Tramp uses it in `tramp-bug' (Ha! another advertisement!).
>
> Hmm, maybe you are fastest just to copy a version with org-mode in the slots.
>
> That may replace org-submit-bug-report, if Bastien and the others agree.

I believe it is better written by org maintainers. They know much better
which kind of information is needed.

> Andreas

Best regards, Michael.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-23  7:39         ` bug-tracker Michael Albinus
@ 2013-02-23  8:09           ` Andreas Röhler
  2013-02-26 16:24             ` bug-tracker Bastien
  0 siblings, 1 reply; 18+ messages in thread
From: Andreas Röhler @ 2013-02-23  8:09 UTC (permalink / raw)
  To: Michael Albinus; +Cc: Bastien, emacs-orgmode

Am 23.02.2013 08:39, schrieb Michael Albinus:
> Andreas Röhler <andreas.roehler@easy-emacs.de> writes:
>
>>> There is `reporter-submit-bug-report' of reporter.el, which you could
>>> customize to your needs.
>>>
>>> Compare, how Tramp uses it in `tramp-bug' (Ha! another advertisement!).
>>
>> Hmm, maybe you are fastest just to copy a version with org-mode in the slots.
>>
>> That may replace org-submit-bug-report, if Bastien and the others agree.
>
> I believe it is better written by org maintainers. They know much better
> which kind of information is needed.
>
>> Andreas
>
> Best regards, Michael.
>

Okay. Seems we should wait for some more info WRT to proceeding at debbugs.
If Bastien wants to go this way at all...

BTW personally I'm in favor of an own debbugs package "org".

Best,

Andreas

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-22 20:50     ` bug-tracker Suvayu Ali
  2013-02-22 21:13       ` bug-tracker Andreas Röhler
@ 2013-02-25 15:51       ` Sebastien Vauban
  2013-02-26  6:47         ` bug-tracker Andreas Röhler
  1 sibling, 1 reply; 18+ messages in thread
From: Sebastien Vauban @ 2013-02-25 15:51 UTC (permalink / raw)
  To: emacs-orgmode-mXXj517/zsQ

Hi,

Suvayu Ali wrote:
> On Fri, Feb 22, 2013 at 08:56:54PM +0100, Andreas Röhler wrote:
>> With exception of the noise, M-x report-emacs-bugs tends to send.
>
> Org already uses one of its own: org-submit-bug-report

Maybe we could add an alias such as `M-x report-org-bugs' to mimick that one?

Best regards,
  Seb

-- 
Sebastien Vauban

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-25 15:51       ` bug-tracker Sebastien Vauban
@ 2013-02-26  6:47         ` Andreas Röhler
  0 siblings, 0 replies; 18+ messages in thread
From: Andreas Röhler @ 2013-02-26  6:47 UTC (permalink / raw)
  To: emacs-orgmode

Am 25.02.2013 16:51, schrieb Sebastien Vauban:
> Hi,
>
> Suvayu Ali wrote:
>> On Fri, Feb 22, 2013 at 08:56:54PM +0100, Andreas Röhler wrote:
>>> With exception of the noise, M-x report-emacs-bugs tends to send.
>>
>> Org already uses one of its own: org-submit-bug-report
>
> Maybe we could add an alias such as `M-x report-org-bugs' to mimick that one?
>
> Best regards,
>    Seb
>
+1

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: bug-tracker
  2013-02-23  8:09           ` bug-tracker Andreas Röhler
@ 2013-02-26 16:24             ` Bastien
  0 siblings, 0 replies; 18+ messages in thread
From: Bastien @ 2013-02-26 16:24 UTC (permalink / raw)
  To: Andreas Röhler; +Cc: emacs-orgmode, Michael Albinus

Hi all,

I suggest we re-open this topic after Org 8.0.

Best,

-- 
 Bastien

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2013-02-26 16:25 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-22 13:36 bug-tracker Andreas Röhler
2013-02-22 14:52 ` bug-tracker Michael Albinus
2013-02-22 19:56   ` bug-tracker Andreas Röhler
2013-02-22 20:09     ` bug-tracker Michael Albinus
2013-02-22 21:23       ` bug-tracker Andreas Röhler
2013-02-23  7:39         ` bug-tracker Michael Albinus
2013-02-23  8:09           ` bug-tracker Andreas Röhler
2013-02-26 16:24             ` bug-tracker Bastien
2013-02-22 20:10     ` bug-tracker Yagnesh Raghava Yakkala
2013-02-22 21:09       ` bug-tracker Andreas Röhler
2013-02-22 20:50     ` bug-tracker Suvayu Ali
2013-02-22 21:13       ` bug-tracker Andreas Röhler
2013-02-25 15:51       ` bug-tracker Sebastien Vauban
2013-02-26  6:47         ` bug-tracker Andreas Röhler
2013-02-22 20:15   ` bug-tracker David Engster
2013-02-22 20:28     ` bug-tracker Michael Albinus
2013-02-22 20:45       ` bug-tracker David Engster
2013-02-23  7:36         ` bug-tracker Michael Albinus

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

	https://git.savannah.gnu.org/cgit/emacs/org-mode.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).