Compare commits

...

2 Commits

Author SHA1 Message Date
contrapunctus a863a8efd9 doc: add maintainer email, correct email formatting 2021-06-08 03:40:25 +05:30
contrapunctus 759e289961 fix(file structure): add package headers 2021-06-06 06:08:33 +05:30
2 changed files with 23 additions and 0 deletions

View File

@ -1,5 +1,12 @@
;;; jabber.el --- a minimal jabber client
;; Author: Magnus Henoch <mange@freemail.hu>
;; Maintainer: wgreenhouse <wgreenhouse@tilde.club>
;; Keywords: comm
;; Homepage: https://tildegit.org/wgreenhouse/emacs-jabber
;; Package-Requires: ((hexrgb "0"))
;; Version: 0.8.92
;; Copyright (C) 2003-2010, 2013 - Magnus Henoch - mange@freemail.hu
;; Copyright (C) 2002-2004 - Tom Berger - object@intelectronica.net
;; Copyright (C) 2005 - Georg Lehner - jorge@magma.com.ni

View File

@ -168,9 +168,21 @@ If a source block does not have syntax highlighting, press =M-o M-o= (=font-lock
7. [ ] "Code" has a lot of direct sub-headings, making it somewhat cumbersome to navigate; someone with a better understanding of the program could organize these better
8. [X] The tangled file currently does not list all the other authors (currently listed in =:COPYRIGHT:= drawers). We could add them all at once in the library headers section...or something else. 🤔
* Library headers and commentary
:PROPERTIES:
:header-args: :tangle yes :load yes :comments no
:END:
We don't want comments to be inserted within the comment structure, and certainly not before the package first line summary, hence the =:comments no= in the header-args.
#+BEGIN_SRC emacs-lisp
;;; jabber.el --- a minimal jabber client
;; Author: Magnus Henoch <mange@freemail.hu>
;; Maintainer: wgreenhouse <wgreenhouse@tilde.club>
;; Keywords: comm
;; Homepage: https://tildegit.org/wgreenhouse/emacs-jabber
;; Package-Requires: ((hexrgb "0"))
;; Version: 0.8.92
;; Copyright (C) 2003-2010, 2013 - Magnus Henoch - mange@freemail.hu
;; Copyright (C) 2002-2004 - Tom Berger - object@intelectronica.net
;; Copyright (C) 2005 - Georg Lehner - jorge@magma.com.ni
@ -195,6 +207,10 @@ If a source block does not have syntax highlighting, press =M-o M-o= (=font-lock
;; along with this program; if not, write to the Free Software
;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#+END_SRC
"Commentary" is displayed when the user clicks on the package's entry in =M-x list-packages=.
#+BEGIN_SRC emacs-lisp
;;; Commentary:
;;