Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Fix CI and include emacs 27 #218

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 21, 2020
Merged
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ jobs:
entrypoint: bash
<<: *default-steps

test-emacs-27:
docker:
- image: silex/emacs:27.0
entrypoint: bash
<<: *default-steps

test-emacs-master:
docker:
- image: silex/emacs:master
Expand All @@ -35,4 +41,5 @@ workflows:
jobs:
- test-emacs-25
- test-emacs-26
- test-emacs-27
- test-emacs-master
6 changes: 3 additions & 3 deletions .emacs/init.el
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
;; Configure melpa and melpa-stable

(require 'package)
(when (version< emacs-version "26.1")
(setq package-check-signature nil))
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/") t)
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/") t)
'("melpa" . "https://melpa.org/packages/") t)
(setq package-enable-at-startup nil)
(package-initialize)
(when (not package-archive-contents)
Expand Down
4 changes: 2 additions & 2 deletions dashboard-widgets.el
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ If MESSAGEBUF is not nil then MSG is also written in message buffer."
(insert msg))))

(defun dashboard-modify-heading-icons (alist)
"Append ALIST items to dashboard-heading-icons to modify icons."
"Append ALIST items to `dashboard-heading-icons' to modify icons."
(dolist (icon alist)
(add-to-list 'dashboard-heading-icons icon)))

Expand Down Expand Up @@ -421,7 +421,7 @@ If MESSAGEBUF is not nil then MSG is also written in message buffer."
;; INIT INFO
;;
(defun dashboard-insert-init-info ()
"Insert init info when dashboard-set-init-info is t."
"Insert init info when `dashboard-set-init-info' is t."
(when dashboard-set-init-info
(dashboard-center-line dashboard-init-info)
(insert
Expand Down