-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
50 lines (35 loc) · 2.03 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
;;; Commentary:
;; This package is a distribution of
;; `The GNU C Language Introduction and Reference manual',
;; written by Richard Stallman, et al.
;; The original manual c.texi, included is in the TeXinfo format.
;; This package installs the info manual for reference within Emacs.
;; Upon installation, it is available under C-h i.
;; This package also contains PDF version.
;; An excerpt from the beginning of the manual is below
;; GNU C Manual
;; ************
;; This manual explains the C language for use with the GNU Compiler
;; Collection (GCC) on the GNU/Linux operating system and other systems.
;; We refer to this dialect as GNU C. If you already know C, you can use
;; this as a reference manual.
;; If you understand basic concepts of programming but know nothing
;; about C, you can read this manual sequentially from the beginning to
;; learn the C language.
;; License of the Manual
;; GNU C Language Introduction and Reference Manual is free documentation; you can redistribute it and/or modify it under the terms of the GNU Free Documentation License as published by the Free Software Foundation; either version 1.3 of the License, or (at your option) any later version published by the Free Software Foundation; with with the Invariant Sections being “GNU General Public License,” with the Front-Cover Texts being “A GNU Manual,” and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled “GNU Free Documentation License.”
;; (a) The FSF's Back-Cover Text is: “You have the freedom to copy and
;; modify this GNU manual.”
;; Please report errors and suggestions to c-manual@@gnu.org.
Installation instructions
(package-vc-install
'(c-intro-and-ref :url "https://github.com/jeremy-bryant/c-intro-and-ref"
:branch "master"
:rev :newest
:doc "./c.texi"))
or
(use-package c-intro-and-ref :ensure nil
:vc (c-intro-and-ref :url "https://github.com/jeremy-bryant/c-intro-and-ref"
:branch "master"
:rev :newest
:doc "./c.texi"))