Skip to content

Extra parenthesis problem in a code snippet on how to Automate Package Updates #84

Open
@pdelfino

Description

@pdelfino

Hi David,

I really like your content! Keep shipping :)

Since I am poor, I can't sponsor you yet. Hopefully, I will be able to help in the future. Until that day, I think I can give a small contribution.

The code on this file about Emacs from Scratch on the section Automatic Package Updates seems to have a small mistake.

There is an extra parenthesis:

(use-package auto-package-update
  :custom
  (auto-package-update-interval 7)
  (auto-package-update-prompt-before-update t)
  (auto-package-update-hide-results t)
  :config
  (auto-package-update-maybe))
  (auto-package-update-at-time "09:00")     )

I suppose your intention was:

(use-package auto-package-update
 :custom
 (auto-package-update-interval 7)
 (auto-package-update-prompt-before-update t)
 (auto-package-update-hide-results t)
 :config
 (auto-package-update-maybe))
(auto-package-update-at-time "09:00")

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions