branch: externals/queue
commit da5d38e5d81b577a0cbbf86fc2cb1ac8ad1246a3
Author: Toby S. Cubitt <[email protected]>
Commit: Toby S. Cubitt <[email protected]>
Trivial whitespace tidying.
---
queue.el | 49 ++++++++++++++++++++++++-------------------------
1 file changed, 24 insertions(+), 25 deletions(-)
diff --git a/queue.el b/queue.el
index 766d010..56cb234 100644
--- a/queue.el
+++ b/queue.el
@@ -1,42 +1,45 @@
-
;;; queue.el --- queue data structures
+
;; Copyright (C) 1991-1995, 2008-2009, 2012 Free Software Foundation, Inc
;; Author: Inge Wallin <[email protected]>
;; Toby Cubitt <[email protected]>
;; Version: 0.1
;; Keywords: extensions, data structures, queue
+;; URL: http://www.dr-qubit.org/emacs.php
+;; Repository: http://www.dr-qubit.org/git/predictive.git
;; This file is part of Emacs.
;;
-;; GNU Emacs is free software: you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
+;; GNU Emacs is free software: you can redistribute it and/or modify it under
+;; the terms of the GNU General Public License as published by the Free
+;; Software Foundation, either version 3 of the License, or (at your option)
+;; any later version.
;;
-;; GNU Emacs is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-;; GNU General Public License for more details.
+;; GNU Emacs is distributed in the hope that it will be useful, but WITHOUT
+;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+;; more details.
;;
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
+;; You should have received a copy of the GNU General Public License along
+;; with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;
-;; A queue can be used both as a first-in last-out (FILO) and as a
-;; first-in first-out (FIFO) stack, i.e. elements can be added to and
-;; removed from the front or back of the queue.
+;; A queue can be used both as a first-in last-out (FILO) and as a first-in
+;; first-out (FIFO) stack, i.e. elements can be added to and removed from the
+;; front or back of the queue.
;;
-;; You create a queue using `make-queue', add an element to the end of
-;; the queue using `queue-enqueue', and push an element onto the front
-;; of the queue using `queue-prepend'. To remove the first element from
-;; a queue, use `queue-dequeue'. A number of other queue convenience
-;; functions are also provided, all starting with the prefix `queue-'.
-;; Functions with prefix `queue--' are for internal use only, and should
-;; never be used outside this package.
+;; You create a queue using `make-queue', add an element to the end of the
+;; queue using `queue-enqueue', and push an element onto the front of the
+;; queue using `queue-prepend'. To remove the first element from a queue, use
+;; `queue-dequeue'. A number of other queue convenience functions are also
+;; provided, all starting with the prefix `queue-'. Functions with prefix
+;; `queue--' are for internal use only, and should never be used outside this
+;; package.
+
;;; Code:
@@ -144,8 +147,4 @@ order. The elements themselves are *not* copied."
(provide 'queue)
-;;; Local Variables:
-;;; fill-column: 72
-;;; End:
-
;;; queue.el ends here