diff options
| author | Glenn Morris | 2012-01-28 19:08:15 -0800 |
|---|---|---|
| committer | Glenn Morris | 2012-01-28 19:08:15 -0800 |
| commit | 31fd3586bdcbdb6bcf40ee5870f6500ebc59916b (patch) | |
| tree | 5c3be925ec31d4356d86964d43e9aa8ad7048dcc /src | |
| parent | a49ca6b95bc5324a3d0610c7c353172efb35545d (diff) | |
| download | emacs-31fd3586bdcbdb6bcf40ee5870f6500ebc59916b.tar.gz emacs-31fd3586bdcbdb6bcf40ee5870f6500ebc59916b.zip | |
Minor NEWS cleanup, mainly for "Installation Changes" section.
* etc/NEWS: Reorder items.
Standardize new --with-libfoo type configure options.
Don't say precisely which library versions are needed - it tends to
change and people who care can look at configure.
Move new Hebrew tutorial entry to "Internationalization changes" section.
Small tidy up for imagemagick and gnutls entries.
* src/gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/gnutls.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 720614faecc..89fa90d9f92 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-01-29 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS). | ||
| 4 | |||
| 1 | 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change) | 5 | 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change) |
| 2 | 6 | ||
| 3 | * s/gnu.h: Define POSIX_SIGNALS (Bug#10552). | 7 | * s/gnu.h: Define POSIX_SIGNALS (Bug#10552). |
diff --git a/src/gnutls.c b/src/gnutls.c index e7801cea746..d7bf0e8edb8 100644 --- a/src/gnutls.c +++ b/src/gnutls.c | |||
| @@ -1118,7 +1118,10 @@ syms_of_gnutls (void) | |||
| 1118 | defsubr (&Sgnutls_available_p); | 1118 | defsubr (&Sgnutls_available_p); |
| 1119 | 1119 | ||
| 1120 | DEFVAR_INT ("gnutls-log-level", global_gnutls_log_level, | 1120 | DEFVAR_INT ("gnutls-log-level", global_gnutls_log_level, |
| 1121 | doc: /* Logging level used by the GnuTLS functions. */); | 1121 | doc: /* Logging level used by the GnuTLS functions. |
| 1122 | Set this larger than 0 to get debug output in the *Messages* buffer. | ||
| 1123 | 1 is for important messages, 2 is for debug data, and higher numbers | ||
| 1124 | are as per the GnuTLS logging conventions. */); | ||
| 1122 | global_gnutls_log_level = 0; | 1125 | global_gnutls_log_level = 0; |
| 1123 | } | 1126 | } |
| 1124 | 1127 | ||