Skip to content

When installed from ELPA, fails unless I manually install 'f' package #68

@bretweinraub

Description

@bretweinraub

I've done this:

(unless (package-installed-p 'gitlab)
  (package-install 'gitlab))

and the

(require 'gitlab)

dies with an error from the bowels where basically

(require 'f)

fails as f package is not installed.

My fix was to add

;; its a bug in my opinion
(unless (package-installed-p 'f)
  (package-install 'f))

to my init file. Seems like a bug somewhere, but with a simple workaround

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions