Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9173deec
Commit
9173deec
authored
Jul 05, 2011
by
Juanma Barranquero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos.
parent
869795d6
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
35 additions
and
26 deletions
+35
-26
lisp/ChangeLog
lisp/ChangeLog
+6
-1
lisp/custom.el
lisp/custom.el
+1
-1
lisp/dired-aux.el
lisp/dired-aux.el
+1
-1
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+4
-0
lisp/gnus/message.el
lisp/gnus/message.el
+1
-1
lisp/mail/feedmail.el
lisp/mail/feedmail.el
+1
-1
lisp/register.el
lisp/register.el
+1
-1
lisp/window.el
lisp/window.el
+11
-11
src/ChangeLog
src/ChangeLog
+7
-7
src/eval.c
src/eval.c
+1
-1
src/gnutls.c
src/gnutls.c
+1
-1
No files found.
lisp/ChangeLog
View file @
9173deec
2011-07-05 Juanma Barranquero <lekktu@gmail.com>
* register.el (registerv-make):
* window.el (window-min-height): Fix typos in docstrings.
2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
* dynamic-setting.el (dynamic-setting-handle-config-changed-event):
...
...
lisp/custom.el
View file @
9173deec
...
...
@@ -1407,7 +1407,7 @@ This function returns nil if no custom theme specifies a value for VARIABLE."
(
face-spec-recalc
face
frame
)))
;;; XEmacs compability functions
;;; XEmacs compa
ti
bility functions
;; In XEmacs, when you reset a Custom Theme, you have to specify the
;; theme to reset it to. We just apply the next available theme, so
...
...
lisp/dired-aux.el
View file @
9173deec
...
...
@@ -1008,7 +1008,7 @@ See Info node `(emacs)Subdir switches' for more details."
(
dired-uncache
(
if
(
consp
dired-directory
)
(
car
dired-directory
)
dired-directory
))
(
dired-map-over-marks
(
let
((
fname
(
dired-get-filename
))
;; Postp
h
one readin hook till we map
;; Postpone readin hook till we map
;; over all marked files (Bug#6810).
(
dired-after-readin-hook
nil
))
(
message
"Redisplaying... %s"
fname
)
...
...
lisp/gnus/ChangeLog
View file @
9173deec
2011-07-05 Juanma Barranquero <lekktu@gmail.com>
* message.el (message-return-action): Fix typo in docstring.
2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
* nnimap.el (nnimap-request-scan): Say that splitting has finished.
...
...
lisp/gnus/message.el
View file @
9173deec
...
...
@@ -1185,7 +1185,7 @@ It is a vector of the following headers:
(defvar message-send-actions nil
"A list of actions to be performed upon successful sending of a message.")
(defvar message-return-action nil
"Action to return to the caller after sending or postp
h
oning a message."
)
"Action to return to the caller after sending or postponing a message.")
(defvar message-exit-actions nil
"A list of actions to be performed upon exiting after sending a message.")
(defvar message-kill-actions nil
...
...
lisp/mail/feedmail.el
View file @
9173deec
...
...
@@ -351,7 +351,7 @@
;; systems with non-classic /bin/[r]mail behavior
;; guard against nil user-mail-address in generating MESSAGE-ID:
;; feedmail-queue-slug-suspect-regexp is now a variable to
;; accomodate non-ASCII environments (thanks to
;; accom
m
odate non-ASCII environments (thanks to
;; Makoto.Nakagawa@jp.compaq.com for this suggestion)
;; feedmail-buffer-to-smtp, to parallel feedmail-buffer-to-smtpmail
;; patchlevel 10, 22 April 2001
...
...
lisp/register.el
View file @
9173deec
...
...
@@ -70,7 +70,7 @@
DATA can be any value.
PRINT-FUNC if provided controls how `list-registers' and
`view-register' print the register. It should be a function
rec
i
eving one argument DATA and print text that completes
rece
i
ving one argument DATA and print text that completes
this sentence:
Register X contains [TEXT PRINTED BY PRINT-FUNC]
JUMP-FUNC if provided, controls how `jump-to-register' jumps to the register.
...
...
lisp/window.el
View file @
9173deec
...
...
@@ -163,8 +163,8 @@ Anything less might crash Emacs.")
(defcustom window-min-height 4
"The minimum number of lines of any window.
The value has to accomodate a mode- or header-line if present.
A
value less than `window-safe-min-height' is ignored. The value
The value has to accom
m
odate a mode- or header-line if present.
A
value less than `window-safe-min-height' is ignored. The value
of this variable is honored when windows are resized or split.
Applications should never rebind this variable. To resize a
...
...
src/ChangeLog
View file @
9173deec
...
...
@@ -270,8 +270,8 @@
min_width/height (Bug#8919).
* gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
(x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
Fix
indentation.
(x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
Fix
indentation.
2011-06-26 Eli Zaretskii <eliz@gnu.org>
...
...
@@ -2797,7 +2797,7 @@
parameters of `gnutls-boot' and documented those parameters in the
docstring. Start callback support.
(emacs_gnutls_handshake): Add Woe32 support. Retry handshake
unless a fatal error occured. Call gnutls_alert_send_appropriate
unless a fatal error occur
r
ed.
Call gnutls_alert_send_appropriate
on error. Return error code.
(emacs_gnutls_write): Call emacs_gnutls_handle_error.
(emacs_gnutls_read): Likewise.
...
...
src/eval.c
View file @
9173deec
...
...
@@ -3162,7 +3162,7 @@ funcall_lambda (Lisp_Object fun, ptrdiff_t nargs,
shouldn't bind any arguments, instead just call the byte-code
interpreter directly; it will push arguments as necessary.
Byte-code objects with either a non-exist
a
nt, or a nil value for
Byte-code objects with either a non-exist
e
nt, or a nil value for
the `push args' slot (the default), have dynamically-bound
arguments, and use the argument-binding code below instead (as do
all interpreted functions, even lexically bound ones). */
...
...
src/gnutls.c
View file @
9173deec
...
...
@@ -379,7 +379,7 @@ emacs_gnutls_read (struct Lisp_Process *proc, char *buf, EMACS_INT nbyte)
/* non-fatal error */
return
-
1
;
else
{
/* a fatal error occured */
/* a fatal error occur
r
ed */
return
0
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment