1 emacs-lisp-intro-nl
═════════════════════

  Dutch translation of "An Introduction to Programming in Emacs Lisp"

  This is work in progress.

  It is currently based on the following revision of the English
  document:

  ┌────
  │ commit 6a08a9a54d4ff5aafe795c7a079709993c08dff3
  │ Author: Paul Eggert <eggert@cs.ucla.edu>
  │ Date:   Thu Jul 24 14:37:20 2025 -0700
  │ 
  │ ; Fix file name in "Loading Files" doc.
  └────


1.1 Method
──────────

1.1.1 Creating a po-file
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌

  The po-file is created with:

  ┌────
  │ po4a-updatepo --format texinfo --master emacs-lisp-intro.texi --po emacs-lisp-intro-nl.po
  └────


1.1.2 Generate a texinfo file
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌

  To generate a texinfo file from the po-file:

  ┌────
  │ po4a-translate \
  │  --format texinfo \
  │  --master emacs-lisp-intro.texi \
  │  --po emacs-lisp-intro-nl.po \
  │  --addendum emacs-lisp-intro-nl.addendum \
  │  --localized emacs-lisp-intro-nl.texi
  └────

  This is what is in the Makefile, just run `make'.


1.1.3 Generate a PDF file
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌

  To generate a PDF from the texinfo file:

  ┌────
  │ makeinfo -D 'EMACSVER x' --pdf emacs-lisp-intro-nl.texi
  └────
