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
7ee6a1d3
Commit
7ee6a1d3
authored
Apr 13, 2011
by
Juanma Barranquero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos.
parent
300f9fca
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
33 additions
and
16 deletions
+33
-16
doc/emacs/ChangeLog
doc/emacs/ChangeLog
+5
-0
doc/emacs/mini.texi
doc/emacs/mini.texi
+1
-1
doc/emacs/screen.texi
doc/emacs/screen.texi
+1
-1
doc/lispref/ChangeLog
doc/lispref/ChangeLog
+4
-0
doc/lispref/windows.texi
doc/lispref/windows.texi
+1
-1
lisp/ChangeLog.14
lisp/ChangeLog.14
+1
-1
lisp/cedet/ChangeLog
lisp/cedet/ChangeLog
+8
-0
lisp/cedet/ede/pconf.el
lisp/cedet/ede/pconf.el
+2
-2
lisp/cedet/ede/proj-comp.el
lisp/cedet/ede/proj-comp.el
+2
-2
lisp/cedet/ede/proj-elisp.el
lisp/cedet/ede/proj-elisp.el
+4
-4
lisp/cedet/ede/proj-scheme.el
lisp/cedet/ede/proj-scheme.el
+1
-1
src/dispextern.h
src/dispextern.h
+2
-2
src/msdos.c
src/msdos.c
+1
-1
No files found.
doc/emacs/ChangeLog
View file @
7ee6a1d3
2011-04-13 Juanma Barranquero <lekktu@gmail.com>
* mini.texi (Minibuffer Edit):
* screen.texi (Mode Line): Fix typo.
2011-03-26 Chong Yidong <cyd@stupidchicken.com>
2011-03-26 Chong Yidong <cyd@stupidchicken.com>
* display.texi (Auto Scrolling): Fix scroll-up/scroll-down confusion.
* display.texi (Auto Scrolling): Fix scroll-up/scroll-down confusion.
...
...
doc/emacs/mini.texi
View file @
7ee6a1d3
...
@@ -165,7 +165,7 @@ however: for instance, you cannot split it. @xref{Windows}.
...
@@ -165,7 +165,7 @@ however: for instance, you cannot split it. @xref{Windows}.
@vindex resize-mini-windows
@vindex resize-mini-windows
Normally, the minibuffer window occupies a single screen line.
Normally, the minibuffer window occupies a single screen line.
However, if you add two or more lines' worth of text into the
However, if you add two or more lines' worth of text into the
minibuffer, it expands automatically to accomodate the text. The
minibuffer, it expands automatically to accom
m
odate the text. The
variable @code{resize-mini-windows} controls the resizing of the
variable @code{resize-mini-windows} controls the resizing of the
minibuffer. The default value is @code{grow-only}, which means the
minibuffer. The default value is @code{grow-only}, which means the
behavior we have just described. If the value is @code{t}, the
behavior we have just described. If the value is @code{t}, the
...
...
doc/emacs/screen.texi
View file @
7ee6a1d3
...
@@ -260,7 +260,7 @@ the buffer. Minor modes are optional editing modes that provide
...
@@ -260,7 +260,7 @@ the buffer. Minor modes are optional editing modes that provide
additional features on top of the major mode. @xref{Minor Modes}.
additional features on top of the major mode. @xref{Minor Modes}.
Some features are listed together with the minor modes whenever they
Some features are listed together with the minor modes whenever they
are turned on, even th
r
ough they are not really minor modes.
are turned on, even though they are not really minor modes.
@samp{Narrow} means that the buffer being displayed has editing
@samp{Narrow} means that the buffer being displayed has editing
restricted to only a portion of its text (@pxref{Narrowing}).
restricted to only a portion of its text (@pxref{Narrowing}).
@samp{Def} means that a keyboard macro is currently being defined
@samp{Def} means that a keyboard macro is currently being defined
...
...
doc/lispref/ChangeLog
View file @
7ee6a1d3
2011-04-13 Juanma Barranquero <lekktu@gmail.com>
* windows.texi (Choosing Window): Fix typo.
2011-04-10 Chong Yidong <cyd@stupidchicken.com>
2011-04-10 Chong Yidong <cyd@stupidchicken.com>
* frames.texi (Layout Parameters): Note the difference between
* frames.texi (Layout Parameters): Note the difference between
...
...
doc/lispref/windows.texi
View file @
7ee6a1d3
...
@@ -1015,7 +1015,7 @@ a window only if the space taken up by that window can accommodate two
...
@@ -1015,7 +1015,7 @@ a window only if the space taken up by that window can accommodate two
windows one above the other that are both at least
windows one above the other that are both at least
@code{window-min-height} lines tall. Moreover, if the window that shall
@code{window-min-height} lines tall. Moreover, if the window that shall
be split has a mode line, @code{split-window-sensibly} does not split
be split has a mode line, @code{split-window-sensibly} does not split
the window unless the new window can accomodate a mode line too.
the window unless the new window can accom
m
odate a mode line too.
@end defopt
@end defopt
@defopt split-width-threshold
@defopt split-width-threshold
...
...
lisp/ChangeLog.14
View file @
7ee6a1d3
...
@@ -4283,7 +4283,7 @@
...
@@ -4283,7 +4283,7 @@
(proced-descend): New variable.
(proced-descend): New variable.
(proced-sort): New arg descend.
(proced-sort): New arg descend.
(proced-sort-interactive): Repeated calls toggle sort order.
(proced-sort-interactive): Repeated calls toggle sort order.
(proced-format): Accomodate changes of proced-format-alist.
(proced-format): Accom
m
odate changes of proced-format-alist.
Undefined attributes are displayed as "?".
Undefined attributes are displayed as "?".
(proced-process-attributes): New optional arg pid-list.
(proced-process-attributes): New optional arg pid-list.
Ignore processes with empty attribute list.
Ignore processes with empty attribute list.
...
...
lisp/cedet/ChangeLog
View file @
7ee6a1d3
2011-04-13 Juanma Barranquero <lekktu@gmail.com>
* ede/pconf.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
* ede/proj-comp.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
* ede/proj-elisp.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf)
(ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
* ede/proj-scheme.el (ede-proj-tweak-autoconf): Fix typos in docstrings.
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.
* Version 23.3 released.
...
...
lisp/cedet/ede/pconf.el
View file @
7ee6a1d3
...
@@ -160,7 +160,7 @@ don't do it. A value of nil means to just do it.")
...
@@ -160,7 +160,7 @@ don't do it. A value of nil means to just do it.")
(
ede-proj-configure-synchronize
this
))
(
ede-proj-configure-synchronize
this
))
(
defmethod
ede-proj-tweak-autoconf
((
this
ede-proj-target
))
(
defmethod
ede-proj-tweak-autoconf
((
this
ede-proj-target
))
"Tweak the configure file (current buffer) to accomodate THIS."
"Tweak the configure file (current buffer) to accom
m
odate THIS."
;; Check the compilers belonging to THIS, and call the autoconf
;; Check the compilers belonging to THIS, and call the autoconf
;; setup for those compilers.
;; setup for those compilers.
(
mapc
'ede-proj-tweak-autoconf
(
ede-proj-compilers
this
))
(
mapc
'ede-proj-tweak-autoconf
(
ede-proj-compilers
this
))
...
@@ -168,7 +168,7 @@ don't do it. A value of nil means to just do it.")
...
@@ -168,7 +168,7 @@ don't do it. A value of nil means to just do it.")
)
)
(
defmethod
ede-proj-flush-autoconf
((
this
ede-proj-target
))
(
defmethod
ede-proj-flush-autoconf
((
this
ede-proj-target
))
"Flush the configure file (current buffer) to accomodate THIS.
"Flush the configure file (current buffer) to accom
m
odate THIS.
By flushing, remove any cruft that may be in the file. Subsequent
By flushing, remove any cruft that may be in the file. Subsequent
calls to `ede-proj-tweak-autoconf' can restore items removed by flush."
calls to `ede-proj-tweak-autoconf' can restore items removed by flush."
nil
)
nil
)
...
...
lisp/cedet/ede/proj-comp.el
View file @
7ee6a1d3
...
@@ -236,7 +236,7 @@ This will prevent rules from creating duplicate variables or rules."
...
@@ -236,7 +236,7 @@ This will prevent rules from creating duplicate variables or rules."
;;; Methods:
;;; Methods:
(
defmethod
ede-proj-tweak-autoconf
((
this
ede-compilation-program
))
(
defmethod
ede-proj-tweak-autoconf
((
this
ede-compilation-program
))
"Tweak the configure file (current buffer) to accomodate THIS."
"Tweak the configure file (current buffer) to accom
m
odate THIS."
(
mapcar
(
mapcar
(
lambda
(
obj
)
(
lambda
(
obj
)
(
cond
((
stringp
obj
)
(
cond
((
stringp
obj
)
...
@@ -248,7 +248,7 @@ This will prevent rules from creating duplicate variables or rules."
...
@@ -248,7 +248,7 @@ This will prevent rules from creating duplicate variables or rules."
(
oref
this
autoconf
)))
(
oref
this
autoconf
)))
(
defmethod
ede-proj-flush-autoconf
((
this
ede-compilation-program
))
(
defmethod
ede-proj-flush-autoconf
((
this
ede-compilation-program
))
"Flush the configure file (current buffer) to accomodate THIS."
"Flush the configure file (current buffer) to accom
m
odate THIS."
nil
)
nil
)
(
defmacro
proj-comp-insert-variable-once
(
varname
&rest
body
)
(
defmacro
proj-comp-insert-variable-once
(
varname
&rest
body
)
...
...
lisp/cedet/ede/proj-elisp.el
View file @
7ee6a1d3
...
@@ -214,7 +214,7 @@ is found, such as a `-version' variable, or the standard header."
...
@@ -214,7 +214,7 @@ is found, such as a `-version' variable, or the standard header."
(
error
"Don't know how to update load path"
))))
(
error
"Don't know how to update load path"
))))
(
defmethod
ede-proj-tweak-autoconf
((
this
ede-proj-target-elisp
))
(
defmethod
ede-proj-tweak-autoconf
((
this
ede-proj-target-elisp
))
"Tweak the configure file (current buffer) to accomodate THIS."
"Tweak the configure file (current buffer) to accom
m
odate THIS."
(
call-next-method
)
(
call-next-method
)
;; Ok, now we have to tweak the autoconf provided `elisp-comp' program.
;; Ok, now we have to tweak the autoconf provided `elisp-comp' program.
(
let
((
ec
(
ede-expand-filename
this
"elisp-comp"
'newfile
)))
(
let
((
ec
(
ede-expand-filename
this
"elisp-comp"
'newfile
)))
...
@@ -238,7 +238,7 @@ is found, such as a `-version' variable, or the standard header."
...
@@ -238,7 +238,7 @@ is found, such as a `-version' variable, or the standard header."
(
save-buffer
))
)))
(
save-buffer
))
)))
(
defmethod
ede-proj-flush-autoconf
((
this
ede-proj-target-elisp
))
(
defmethod
ede-proj-flush-autoconf
((
this
ede-proj-target-elisp
))
"Flush the configure file (current buffer) to accomodate THIS."
"Flush the configure file (current buffer) to accom
m
odate THIS."
;; Remove crufty old paths from elisp-compile
;; Remove crufty old paths from elisp-compile
(
let
((
ec
(
ede-expand-filename
this
"elisp-comp"
'newfile
))
(
let
((
ec
(
ede-expand-filename
this
"elisp-comp"
'newfile
))
)
)
...
@@ -381,11 +381,11 @@ Argument THIS is the target which needs to insert an info file."
...
@@ -381,11 +381,11 @@ Argument THIS is the target which needs to insert an info file."
)
)
(
defmethod
ede-proj-tweak-autoconf
((
this
ede-proj-target-elisp-autoloads
))
(
defmethod
ede-proj-tweak-autoconf
((
this
ede-proj-target-elisp-autoloads
))
"Tweak the configure file (current buffer) to accomodate THIS."
"Tweak the configure file (current buffer) to accom
m
odate THIS."
(
error
"Autoloads not supported in autoconf yet"
))
(
error
"Autoloads not supported in autoconf yet"
))
(
defmethod
ede-proj-flush-autoconf
((
this
ede-proj-target-elisp-autoloads
))
(
defmethod
ede-proj-flush-autoconf
((
this
ede-proj-target-elisp-autoloads
))
"Flush the configure file (current buffer) to accomodate THIS."
"Flush the configure file (current buffer) to accom
m
odate THIS."
nil
)
nil
)
(
provide
'ede/proj-elisp
)
(
provide
'ede/proj-elisp
)
...
...
lisp/cedet/ede/proj-scheme.el
View file @
7ee6a1d3
...
@@ -41,7 +41,7 @@
...
@@ -41,7 +41,7 @@
"This target consists of scheme files."
)
"This target consists of scheme files."
)
(
defmethod
ede-proj-tweak-autoconf
((
this
ede-proj-target-scheme
))
(
defmethod
ede-proj-tweak-autoconf
((
this
ede-proj-target-scheme
))
"Tweak the configure file (current buffer) to accomodate THIS."
"Tweak the configure file (current buffer) to accom
m
odate THIS."
(
autoconf-insert-new-macro
"AM_INIT_GUILE_MODULE"
))
(
autoconf-insert-new-macro
"AM_INIT_GUILE_MODULE"
))
(
provide
'ede/proj-scheme
)
(
provide
'ede/proj-scheme
)
...
...
src/dispextern.h
View file @
7ee6a1d3
...
@@ -63,7 +63,7 @@ typedef HDC XImagePtr_or_DC;
...
@@ -63,7 +63,7 @@ typedef HDC XImagePtr_or_DC;
#ifdef HAVE_NS
#ifdef HAVE_NS
#include "nsgui.h"
#include "nsgui.h"
/*
f
ollowing typedef needed to accomodate the MSDOS port, believe it or not */
/*
F
ollowing typedef needed to accom
m
odate the MSDOS port, believe it or not
.
*/
typedef
struct
ns_display_info
Display_Info
;
typedef
struct
ns_display_info
Display_Info
;
typedef
Pixmap
XImagePtr
;
typedef
Pixmap
XImagePtr
;
typedef
XImagePtr
XImagePtr_or_DC
;
typedef
XImagePtr
XImagePtr_or_DC
;
...
@@ -368,7 +368,7 @@ struct glyph
...
@@ -368,7 +368,7 @@ struct glyph
doesn't have a glyph in a font. */
doesn't have a glyph in a font. */
unsigned
glyph_not_available_p
:
1
;
unsigned
glyph_not_available_p
:
1
;
/* Non-zero means don't display cursor here. */
/* Non-zero means don't display cursor here. */
unsigned
avoid_cursor_p
:
1
;
unsigned
avoid_cursor_p
:
1
;
...
...
src/msdos.c
View file @
7ee6a1d3
...
@@ -960,7 +960,7 @@ IT_set_face (int face)
...
@@ -960,7 +960,7 @@ IT_set_face (int face)
/* According to RBIL (INTERRUP.A, V-1000), 160 is the maximum possible
/* According to RBIL (INTERRUP.A, V-1000), 160 is the maximum possible
width of a DOS display in any known text mode. We multiply by 2 to
width of a DOS display in any known text mode. We multiply by 2 to
accomodate the screen attribute byte. */
accom
m
odate the screen attribute byte. */
#define MAX_SCREEN_BUF 160*2
#define MAX_SCREEN_BUF 160*2
Lisp_Object Vdos_unsupported_char_glyph;
Lisp_Object Vdos_unsupported_char_glyph;
...
...
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