diff options
| author | Glenn Morris | 2013-08-27 01:01:13 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-08-27 01:01:13 -0700 |
| commit | a0b5606ec769968b10c765f8ff50f312d691ef62 (patch) | |
| tree | 39337815ff4fae5175df229dbd72d770c77c7648 | |
| parent | 1857cd3f9ef1103d5ea2fcecbb7b2a6a9d6b2aef (diff) | |
| parent | d96ad42239cbf481c292e750aa8b6fd5a19ddb7e (diff) | |
| download | emacs-a0b5606ec769968b10c765f8ff50f312d691ef62.tar.gz emacs-a0b5606ec769968b10c765f8ff50f312d691ef62.zip | |
Merge from emacs-24; up to 2013-01-03T01:56:56Z!rgm@gnu.org
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/package.el | 2 |
4 files changed, 8 insertions, 2 deletions
| @@ -1,5 +1,7 @@ | |||
| 1 | 2013-08-27 Glenn Morris <rgm@gnu.org> | 1 | 2013-08-27 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * configure.ac (emacs_broken_SIGIO): No longer set on gnu-kfreebsd. | ||
| 4 | |||
| 3 | * configure.ac (DOCMISC_DVI_W32, DOCMISC_HTML_W32, DOCMISC_INFO_W32) | 5 | * configure.ac (DOCMISC_DVI_W32, DOCMISC_HTML_W32, DOCMISC_INFO_W32) |
| 4 | (DOCMISC_PDF_W32, DOCMISC_PS_W32): New output variables. | 6 | (DOCMISC_PDF_W32, DOCMISC_PS_W32): New output variables. |
| 5 | * Makefile.in (check-info-dir): Ignore efaq-w32. | 7 | * Makefile.in (check-info-dir): Ignore efaq-w32. |
diff --git a/configure.ac b/configure.ac index 55194f5b822..28377457728 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -3868,7 +3868,7 @@ emacs_broken_SIGIO=no | |||
| 3868 | case $opsys in | 3868 | case $opsys in |
| 3869 | dnl SIGIO exists, but the feature doesn't work in the way Emacs needs. | 3869 | dnl SIGIO exists, but the feature doesn't work in the way Emacs needs. |
| 3870 | dnl See eg <http://article.gmane.org/gmane.os.openbsd.ports/46831>. | 3870 | dnl See eg <http://article.gmane.org/gmane.os.openbsd.ports/46831>. |
| 3871 | hpux* | irix6-5 | openbsd | sol2* | unixware | gnu-kfreebsd ) | 3871 | hpux* | irix6-5 | openbsd | sol2* | unixware ) |
| 3872 | emacs_broken_SIGIO=yes | 3872 | emacs_broken_SIGIO=yes |
| 3873 | ;; | 3873 | ;; |
| 3874 | 3874 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b8351f11f61..e8e56133d88 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-08-27 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/package.el (package-buffer-info): Fix message typo. | ||
| 4 | |||
| 1 | 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2013-08-27 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * progmodes/python.el (python-font-lock-keywords): Don't return nil | 7 | * progmodes/python.el (python-font-lock-keywords): Don't return nil |
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index add73fd4bde..0085074e5be 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -981,7 +981,7 @@ error. If there is a package, narrow the buffer to the file's | |||
| 981 | boundaries." | 981 | boundaries." |
| 982 | (goto-char (point-min)) | 982 | (goto-char (point-min)) |
| 983 | (unless (re-search-forward "^;;; \\([^ ]*\\)\\.el ---[ \t]*\\(.*?\\)[ \t]*\\(-\\*-.*-\\*-[ \t]*\\)?$" nil t) | 983 | (unless (re-search-forward "^;;; \\([^ ]*\\)\\.el ---[ \t]*\\(.*?\\)[ \t]*\\(-\\*-.*-\\*-[ \t]*\\)?$" nil t) |
| 984 | (error "Packages lacks a file header")) | 984 | (error "Package lacks a file header")) |
| 985 | (let ((file-name (match-string-no-properties 1)) | 985 | (let ((file-name (match-string-no-properties 1)) |
| 986 | (desc (match-string-no-properties 2)) | 986 | (desc (match-string-no-properties 2)) |
| 987 | (start (line-beginning-position))) | 987 | (start (line-beginning-position))) |