diff options
| author | Joakim Verona | 2013-03-26 16:20:17 +0100 |
|---|---|---|
| committer | Joakim Verona | 2013-03-26 16:20:17 +0100 |
| commit | 6f6db22fc74ffb7fbdd4d805545b7e28cd59f0c8 (patch) | |
| tree | 4a58903b4c3d010e90fc37fe10ea4d9895876d01 /etc | |
| parent | 62dd123f7c11ddbe156bc0e84dcb7ca1da5368bb (diff) | |
| parent | 48c226c2c2592e31a47559bd1689fcc4354d9479 (diff) | |
| download | emacs-6f6db22fc74ffb7fbdd4d805545b7e28cd59f0c8.tar.gz emacs-6f6db22fc74ffb7fbdd4d805545b7e28cd59f0c8.zip | |
conflict resolve
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/ChangeLog | 21 | ||||
| -rw-r--r-- | etc/NEWS | 6 | ||||
| -rw-r--r-- | etc/PROBLEMS | 4 | ||||
| -rw-r--r-- | etc/srecode/c.srt | 6 | ||||
| -rw-r--r-- | etc/srecode/ede-autoconf.srt | 6 | ||||
| -rw-r--r-- | etc/srecode/ede-make.srt | 3 | ||||
| -rw-r--r-- | etc/srecode/java.srt | 21 |
7 files changed, 58 insertions, 9 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index dfbefedc323..3468e70386d 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,24 @@ | |||
| 1 | 2013-03-21 Eric Ludlam <zappo@gnu.org> | ||
| 2 | |||
| 3 | * srecode/ede-autoconf.srt: Change Copyright to FSF. | ||
| 4 | (ede-empty): Change AC_INIT to use PROJECT_NAME, and | ||
| 5 | PROJECT_VERSION. | ||
| 6 | |||
| 7 | * srecode/ede-make.srt (ede-empty): Add a dependency on :project. | ||
| 8 | Add header comment specifying the project's relative path. | ||
| 9 | |||
| 10 | * srecode/c.srt (header_guard): Upcase the filename symbol. | ||
| 11 | |||
| 12 | 2013-03-21 Vladimir Kazanov <vkazanov@inbox.ru> | ||
| 13 | |||
| 14 | * srecode/java.srt (empty-main): New. | ||
| 15 | (class-tag): Decapitalize class. | ||
| 16 | |||
| 17 | 2013-03-18 Paul Eggert <eggert@cs.ucla.edu> | ||
| 18 | |||
| 19 | Emacs crashes with ImageMagick 6.8.2-3 through 6.8.3-9 (Bug#13867). | ||
| 20 | * PROBLEMS: Mention problem with ImageMagick 6.8.2-3 through 6.8.3-9. | ||
| 21 | |||
| 1 | 2013-03-12 Paul Eggert <eggert@cs.ucla.edu> | 22 | 2013-03-12 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 23 | ||
| 3 | Add coding tags for iso-2022-7bit files that are not already tagged. | 24 | Add coding tags for iso-2022-7bit files that are not already tagged. |
| @@ -174,6 +174,12 @@ When toggling, it restores the frame's previous window configuration. | |||
| 174 | It also has an optional frame argument, which can be used by Lisp | 174 | It also has an optional frame argument, which can be used by Lisp |
| 175 | callers to fit the image to a frame other than the selected frame. | 175 | callers to fit the image to a frame other than the selected frame. |
| 176 | 176 | ||
| 177 | ** Info | ||
| 178 | |||
| 179 | *** New face `info-index-match' is used to highlight matches in index | ||
| 180 | entries displayed by `Info-index-next', `Info-virtual-index' and | ||
| 181 | `info-apropos'. | ||
| 182 | |||
| 177 | ** Isearch | 183 | ** Isearch |
| 178 | 184 | ||
| 179 | *** `C-x 8 RET' in Isearch mode reads a character by its Unicode name | 185 | *** `C-x 8 RET' in Isearch mode reads a character by its Unicode name |
diff --git a/etc/PROBLEMS b/etc/PROBLEMS index b38a1240540..8cc70115037 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS | |||
| @@ -206,6 +206,10 @@ added a line like this at the beginning of files of Lisp code: | |||
| 206 | If your tar has this problem, install GNU tar--if you can manage to | 206 | If your tar has this problem, install GNU tar--if you can manage to |
| 207 | untar it :-). | 207 | untar it :-). |
| 208 | 208 | ||
| 209 | ** Emacs can crash when displaying PNG images with transparency. | ||
| 210 | This is due to a bug introduced in ImageMagick 6.8.2-3. The bug | ||
| 211 | should be fixed in ImageMagick 6.8.3-10. Please see Bug#13867. | ||
| 212 | |||
| 209 | ** Crashes when displaying GIF images in Emacs built with version | 213 | ** Crashes when displaying GIF images in Emacs built with version |
| 210 | libungif-4.1.0 are resolved by using version libungif-4.1.0b1. | 214 | libungif-4.1.0 are resolved by using version libungif-4.1.0b1. |
| 211 | Configure checks for the correct version, but this problem could occur | 215 | Configure checks for the correct version, but this problem could occur |
diff --git a/etc/srecode/c.srt b/etc/srecode/c.srt index 6c7139f3184..479f5c9b33d 100644 --- a/etc/srecode/c.srt +++ b/etc/srecode/c.srt | |||
| @@ -46,12 +46,12 @@ template empty :time :user :file :c | |||
| 46 | 46 | ||
| 47 | template header_guard :file :blank | 47 | template header_guard :file :blank |
| 48 | ---- | 48 | ---- |
| 49 | #ifndef {{FILENAME_SYMBOL}} | 49 | #ifndef {{FILENAME_SYMBOL:upcase}} |
| 50 | #define {{FILENAME_SYMBOL}} 1 | 50 | #define {{FILENAME_SYMBOL:upcase}} 1 |
| 51 | 51 | ||
| 52 | {{^}} | 52 | {{^}} |
| 53 | 53 | ||
| 54 | #endif // {{FILENAME_SYMBOL}} | 54 | #endif // {{FILENAME_SYMBOL:upcase}} |
| 55 | ---- | 55 | ---- |
| 56 | 56 | ||
| 57 | context misc | 57 | context misc |
diff --git a/etc/srecode/ede-autoconf.srt b/etc/srecode/ede-autoconf.srt index d2ec61a0a93..b3aaa75d2c2 100644 --- a/etc/srecode/ede-autoconf.srt +++ b/etc/srecode/ede-autoconf.srt | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;; ede/templates/autoconf.srt --- Templates for autoconf used by EDE. | 1 | ;; ede/templates/autoconf.srt --- Templates for autoconf used by EDE. |
| 2 | ;; | 2 | ;; |
| 3 | ;; Copyright (C) 2010 Eric M. Ludlam | 3 | ;; Copyright (C) 2010, 2013 Free Software Foundation, Inc. |
| 4 | ;; | 4 | ;; |
| 5 | ;; Author: Eric M. Ludlam <eric@siege-engine.com> | 5 | ;; Author: Eric M. Ludlam <eric@siege-engine.com> |
| 6 | ;; | 6 | ;; |
| @@ -26,7 +26,7 @@ set application "ede" | |||
| 26 | 26 | ||
| 27 | context file | 27 | context file |
| 28 | 28 | ||
| 29 | template ede-empty | 29 | template ede-empty :project |
| 30 | "Start a new EDE generated configure.in/ac file." | 30 | "Start a new EDE generated configure.in/ac file." |
| 31 | ---- | 31 | ---- |
| 32 | {{comment_prefix}} Automatically Generated/Maintained {{FILE}} by EDE. | 32 | {{comment_prefix}} Automatically Generated/Maintained {{FILE}} by EDE. |
| @@ -40,7 +40,7 @@ template ede-empty | |||
| 40 | {{comment_prefix}} | 40 | {{comment_prefix}} |
| 41 | {{comment_prefix}} Process this file with autoconf to produce a configure script | 41 | {{comment_prefix}} Process this file with autoconf to produce a configure script |
| 42 | 42 | ||
| 43 | AC_INIT({{TEST_FILE}}) | 43 | AC_INIT({{PROJECT_NAME}}, {{PROJECT_VERSION}}) |
| 44 | AM_INIT_AUTOMAKE([{{PROGRAM}}], 0) | 44 | AM_INIT_AUTOMAKE([{{PROGRAM}}], 0) |
| 45 | AM_CONFIG_HEADER(config.h) | 45 | AM_CONFIG_HEADER(config.h) |
| 46 | 46 | ||
diff --git a/etc/srecode/ede-make.srt b/etc/srecode/ede-make.srt index f12744e89b7..36bae085cc9 100644 --- a/etc/srecode/ede-make.srt +++ b/etc/srecode/ede-make.srt | |||
| @@ -26,10 +26,11 @@ set application "ede" | |||
| 26 | 26 | ||
| 27 | context file | 27 | context file |
| 28 | 28 | ||
| 29 | template ede-empty :file | 29 | template ede-empty :file :project |
| 30 | ---- | 30 | ---- |
| 31 | # Automatically Generated {{FILE}} by EDE. | 31 | # Automatically Generated {{FILE}} by EDE. |
| 32 | # For use with: {{MAKETYPE}} | 32 | # For use with: {{MAKETYPE}} |
| 33 | # Relative File Name: {{PROJECT_FILENAME}} | ||
| 33 | # | 34 | # |
| 34 | # DO NOT MODIFY THIS FILE OR YOUR CHANGES MAY BE LOST. | 35 | # DO NOT MODIFY THIS FILE OR YOUR CHANGES MAY BE LOST. |
| 35 | # EDE is the Emacs Development Environment. | 36 | # EDE is the Emacs Development Environment. |
diff --git a/etc/srecode/java.srt b/etc/srecode/java.srt index a4a6fc2e863..e1fbb50eff6 100644 --- a/etc/srecode/java.srt +++ b/etc/srecode/java.srt | |||
| @@ -43,6 +43,23 @@ package {{FILENAME_AS_PACKAGE}}; | |||
| 43 | ---- | 43 | ---- |
| 44 | bind "e" | 44 | bind "e" |
| 45 | 45 | ||
| 46 | template empty-main :file :user :time :java :indent | ||
| 47 | "Fill out an empty file with a class having a static main method" | ||
| 48 | sectiondictionary "CLASSSECTION" | ||
| 49 | set NAME macro "FILENAME_AS_CLASS" | ||
| 50 | ---- | ||
| 51 | {{>:filecomment}} | ||
| 52 | |||
| 53 | package {{FILENAME_AS_PACKAGE}}; | ||
| 54 | |||
| 55 | {{<CLASSSECTION:declaration:class}} | ||
| 56 | public static void main(String args[]) { | ||
| 57 | {{^}} | ||
| 58 | } | ||
| 59 | {{/CLASSSECTION}} | ||
| 60 | ---- | ||
| 61 | bind "l" | ||
| 62 | |||
| 46 | context declaration | 63 | context declaration |
| 47 | 64 | ||
| 48 | template import :blank :indent | 65 | template import :blank :indent |
| @@ -74,8 +91,8 @@ Override this to affect applications, or the outer class structure for | |||
| 74 | the user-facing template." | 91 | the user-facing template." |
| 75 | ---- | 92 | ---- |
| 76 | {{>:declaration:javadoc-class}} | 93 | {{>:declaration:javadoc-class}} |
| 77 | public Class {{?NAME}} {{#PARENTS}}{{#FIRST}}extends {{/FIRST}}{{#NOTFIRST}}implements {{/NOTFIRST}}{{NAME}}{{/PARENTS}} | 94 | public class {{?NAME}} {{#PARENTS}}{{#FIRST}}extends {{/FIRST}}{{#NOTFIRST}}implements {{/NOTFIRST}}{{NAME}}{{/PARENTS}} |
| 78 | { | 95 | { |
| 79 | {{^}} | 96 | {{^}} |
| 80 | }; | 97 | }; |
| 81 | ---- | 98 | ---- |