aboutsummaryrefslogtreecommitdiff
path: root/documentation/content/en/books/developers-handbook/tools
diff options
context:
space:
mode:
authorrilysh <nightquick@proton.me>2024-01-22 08:56:23 +0000
committerDanilo G. Baio <dbaio@FreeBSD.org>2024-02-24 19:07:04 +0000
commitbba56318292228d93e36f163945d9b297a656fe9 (patch)
treed4841ce67f1d0fccea4eb1c10813ccbdccff6b0d /documentation/content/en/books/developers-handbook/tools
parent332da8a620d288e727523fda00a776f877859a5d (diff)
Diffstat (limited to 'documentation/content/en/books/developers-handbook/tools')
-rw-r--r--documentation/content/en/books/developers-handbook/tools/_index.adoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/content/en/books/developers-handbook/tools/_index.adoc b/documentation/content/en/books/developers-handbook/tools/_index.adoc
index 0aa087ceb0..a597fc6fac 100644
--- a/documentation/content/en/books/developers-handbook/tools/_index.adoc
+++ b/documentation/content/en/books/developers-handbook/tools/_index.adoc
@@ -434,7 +434,7 @@ free(foo);
Making one of these mistakes will not always lead to an error, but they are always bad practice.
Some systems and compilers are more tolerant than others,
-which is why programs that ran well on one system can crash when you try them on an another.
+which is why programs that run well on one system can crash when you try them on another.
==== Sometimes when I get a core dump it says bus error. It says in my UNIX(R) book that this means a hardware problem, but the computer still seems to be working. Is this true?
@@ -1248,7 +1248,7 @@ Instead of using a proprietary macro language for configuration, Emacs uses a ve
Working with Emacs Lisp can be quite helpful if you want to go on and learn something like Common Lisp.
Emacs Lisp has many features of Common Lisp, although it is considerably smaller (and thus easier to master).
-The best way to learn Emacs Lisp is to download the link:ftp://ftp.gnu.org/old-gnu/emacs/elisp-manual-19-2.4.tar.gz[Emacs Tutorial]
+The best way to learn Emacs Lisp is to read the online link:https://www.gnu.org/software/emacs/manual/elisp.html[Emacs Reference] manual.
However, there is no need to actually know any Lisp to get started with configuring Emacs,
as I have included a sample [.filename]#.emacs#, which should be enough to get you started.