diff options
| author | Glenn Morris | 2010-11-09 20:50:31 -0800 |
|---|---|---|
| committer | Glenn Morris | 2010-11-09 20:50:31 -0800 |
| commit | de4708cbd8ec2185efcad0b20f3e2766f4b95e23 (patch) | |
| tree | 2b81638fbeff5385f4685d05e34315207cddb730 | |
| parent | 86520d8c1737985eb24dabb9de1f90b622e3bbd5 (diff) | |
| download | emacs-de4708cbd8ec2185efcad0b20f3e2766f4b95e23.tar.gz emacs-de4708cbd8ec2185efcad0b20f3e2766f4b95e23.zip | |
Comments related to `bzr commit --fixes'.
| -rw-r--r-- | .dir-locals.el | 3 | ||||
| -rw-r--r-- | admin/notes/bugtracker | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 3ab6809ffb8..9b907570663 100644 --- a/.dir-locals.el +++ b/.dir-locals.el | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | ((nil . ((tab-width . 8) | 1 | ((nil . ((tab-width . 8) |
| 2 | (fill-column . 70))) | 2 | (fill-column . 70))) |
| 3 | (c-mode . ((c-file-style . "GNU"))) | 3 | (c-mode . ((c-file-style . "GNU"))) |
| 4 | ;; You must set bugtracker_debbugs_url in your bazaar.conf for this to work. | ||
| 5 | ;; See admin/notes/bugtracker. | ||
| 4 | (log-edit-mode . ((log-edit-rewrite-fixes | 6 | (log-edit-mode . ((log-edit-rewrite-fixes |
| 5 | " (bug#\\([0-9]+\\))" . "debbugs:\\1"))) | 7 | " (bug#\\([0-9]+\\))" . "debbugs:\\1"))) |
| 6 | (change-log-mode . ((add-log-time-zone-rule . t) | 8 | (change-log-mode . ((add-log-time-zone-rule . t) |
| @@ -8,4 +10,3 @@ | |||
| 8 | (bug-reference-url-format . "http://debbugs.gnu.org/%s") | 10 | (bug-reference-url-format . "http://debbugs.gnu.org/%s") |
| 9 | (mode . bug-reference)))) | 11 | (mode . bug-reference)))) |
| 10 | 12 | ||
| 11 | ;; arch-tag: fb93c160-e9fe-4184-aad1-e4f5daa11cbd | ||
diff --git a/admin/notes/bugtracker b/admin/notes/bugtracker index 5936eead85a..e22a8e5947e 100644 --- a/admin/notes/bugtracker +++ b/admin/notes/bugtracker | |||
| @@ -449,10 +449,12 @@ http://lists.gnu.org/archive/html/emacs-devel/2009-11/msg00440.html | |||
| 449 | 449 | ||
| 450 | ** Bazaar stuff | 450 | ** Bazaar stuff |
| 451 | 451 | ||
| 452 | *** You can use `bzr commit --fixes emacs:123' to mark that a commit fixes | 452 | *** You can use `bzr commit --fixes debbugs:123' to mark that a commit fixes |
| 453 | Emacs bug 123. You will first need to add a line to your bazaar.conf: | 453 | Emacs bug 123. You will first need to add a line to your bazaar.conf: |
| 454 | 454 | ||
| 455 | bugtracker_emacs_url = http://debbugs.gnu.org/{id} | 455 | bugtracker_debbugs_url = http://debbugs.gnu.org/{id} |
| 456 | |||
| 457 | See also log-edit-rewrite-fixes in .dir-locals.el. | ||
| 456 | 458 | ||
| 457 | Note that all this does is add some metadata to the commit, it doesn't | 459 | Note that all this does is add some metadata to the commit, it doesn't |
| 458 | actually mark the bug as closed in the tracker. There seems to be no | 460 | actually mark the bug as closed in the tracker. There seems to be no |