1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-25 19:11:56 +00:00

* admin/bzrmerge.el: Require cl when compiling.

(bzrmerge-merges): Doc fix.
This commit is contained in:
Glenn Morris 2011-01-13 18:44:25 -08:00
parent fc55380c5c
commit 1851cac3e3
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2011-01-14 Glenn Morris <rgm@gnu.org>
* bzrmerge.el: Require cl when compiling.
(bzrmerge-merges): Doc fix.
2011-01-07 Paul Eggert <eggert@cs.ucla.edu>
* notes/copyright: There's only one install-sh, not two, so fix a
@ -989,7 +994,6 @@
;; Local Variables:
;; coding: utf-8
;; add-log-time-zone-rule: t
;; End:
Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007,
@ -1009,5 +1013,3 @@
You should have received a copy of the GNU General Public License
along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
;;; arch-tag: 97728c77-77c0-4156-b669-0e8c07d94e5a

View File

@ -24,8 +24,11 @@
;;; Code:
(eval-when-compile
(require 'cl)) ; assert
(defun bzrmerge-merges ()
"Return the list of already merged (not not committed) revisions.
"Return the list of already merged (not yet committed) revisions.
The list returned is sorted by oldest-first."
(with-current-buffer (get-buffer-create "*bzrmerge*")
(erase-buffer)