Skip to content

Commit

Permalink
forge-list.el: Rename to forge-topics.el
Browse files Browse the repository at this point in the history
There's some code left in this library, which is also used by
forge-repos.el and will be moved to a separate library in the
next commit.
  • Loading branch information
tarsius committed Apr 21, 2024
1 parent 58cb238 commit 3691577
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion default.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ELS += $(PKG)-gogs.el
ELS += $(PKG)-bitbucket.el
ELS += $(PKG)-semi.el
ELS += $(PKG)-commands.el
ELS += $(PKG)-list.el
ELS += $(PKG)-topics.el
ELS += $(PKG)-repos.el
ELCS = $(ELS:.el=.elc)

Expand Down
4 changes: 2 additions & 2 deletions lisp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ $(PKG)-gogs.elc: $(PKG).elc
$(PKG)-bitbucket.elc: $(PKG).elc
$(PKG)-semi.elc: $(PKG).elc
$(PKG)-commands.elc: $(PKG).elc
$(PKG)-list.elc: $(PKG).elc
$(PKG)-repos.elc: $(PKG)-list.elc
$(PKG)-topics.elc: $(PKG).elc
$(PKG)-repos.elc: $(PKG)-topics.elc

%.elc: %.el
@printf "Compiling $<\n"
Expand Down
2 changes: 1 addition & 1 deletion lisp/forge-repos.el
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

;;; Code:

(require 'forge-list)
(require 'forge-topics)

;;; Options

Expand Down
6 changes: 3 additions & 3 deletions lisp/forge-list.el → lisp/forge-topics.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; forge-list.el --- Tabulated-list interface -*- lexical-binding:t -*-
;;; forge-topics.el --- List topics -*- lexical-binding:t -*-

;; Copyright (C) 2018-2024 Jonas Bernoulli

Expand Down Expand Up @@ -544,5 +544,5 @@ Only Github is supported for now."
nil t forge-global-topic-list-columns))

;;; _
(provide 'forge-list)
;;; forge-list.el ends here
(provide 'forge-topics)
;;; forge-topics.el ends here
2 changes: 1 addition & 1 deletion lisp/forge.el
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
(require 'forge-semi)

(require 'forge-commands)
(require 'forge-list)
(require 'forge-topics)
(require 'forge-repos)

;;; Add Sections
Expand Down

0 comments on commit 3691577

Please sign in to comment.