diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-11-16 18:47:25 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-11-16 18:47:25 +0100 |
commit | 7877f37394a0bea045c8d0faf7db7a7e1b4ccdc1 (patch) | |
tree | 334fa246f6537c6fbdb73be78c873416b2b9bf44 /admin | |
parent | 10649b828d6b2c7bfc41dde3386c980bcd48c0b3 (diff) | |
download | emacs-7877f37394a0bea045c8d0faf7db7a7e1b4ccdc1.tar.gz |
Fix typos.
Diffstat (limited to 'admin')
-rw-r--r-- | admin/ChangeLog | 7 | ||||
-rw-r--r-- | admin/admin.el | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index f6adb084e88..6030dd8f6d3 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog @@ -1,7 +1,10 @@ +2011-11-16 Juanma Barranquero <lekktu@gmail.com> + + * admin.el (manual-dvi): Fix typo. + 2011-11-15 Eli Zaretskii <eliz@gnu.org> - * nt/README-ftp-server: Update the information about PNG - libraries. + * nt/README-ftp-server: Update the information about PNG libraries. 2011-11-15 Juanma Barranquero <lekktu@gmail.com> diff --git a/admin/admin.el b/admin/admin.el index 673d86c8825..9235144f6c6 100644 --- a/admin/admin.el +++ b/admin/admin.el @@ -330,7 +330,7 @@ the @import directive." (defun manual-dvi (texi-file dest ps-dest) "Run texi2dvi on TEXI-FILE, emitting dvi output to DEST. -Also generate postscript output in PS-DEST." +Also generate PostScript output in PS-DEST." (call-process "texi2dvi" nil nil nil texi-file "-o" dest) (call-process "dvips" nil nil nil dest "-o" ps-dest) (call-process "gzip" nil nil nil dest) |