Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions window-numbering.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
;;
;; Author: Nikolaj Schumacher <bugs * nschum de>
;; Version: 1.1.2
;; Package-Requires: ((emacs "24.3"))
;; Keywords: faces, matching
;; URL: http://nschum.de/src/emacs/window-numbering-mode/
;; Compatibility: GNU Emacs 22.x, GNU Emacs 23.x, GNU Emacs 24.x
;;
;; This file is NOT part of GNU Emacs.
;;
Expand Down Expand Up @@ -52,7 +52,7 @@
;;
;;; Code:

(eval-when-compile (require 'cl))
(eval-when-compile (require 'cl-lib))

(push "^No window numbered .$" debug-ignored-errors)

Expand Down Expand Up @@ -119,7 +119,7 @@ If prefix ARG is given, delete the window instead of selecting it."
(let ((window (aref windows i)))
(unless window
(push (% (1+ i) 10) left)))
(decf i))
(cl-decf i))
left))

(defvar window-numbering-windows nil
Expand Down