mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Spelling fixes.
This commit is contained in:
parent
a24bf23e0f
commit
c80e3b4aed
121 changed files with 351 additions and 353 deletions
|
|
@ -3960,11 +3960,11 @@ The 2-point shape SHAPE is drawn from X1, Y1 to X2, Y2."
|
|||
;; Implementation note: This really should honor the interval-fn entry
|
||||
;; in the master table, `artist-mt', which would mean leaving a timer
|
||||
;; that calls `draw-fn' every now and then. That timer would then have
|
||||
;; to be cancelled and reinstalled whenever the user moves the cursor.
|
||||
;; to be canceled and reinstalled whenever the user moves the cursor.
|
||||
;; This could be done, but what if the user suddenly switches to another
|
||||
;; drawing mode, or even kills the buffer! In the mouse case, it is much
|
||||
;; simpler: when at the end of `artist-mouse-draw-continously', the
|
||||
;; user has released the button, so the timer will always be cancelled
|
||||
;; user has released the button, so the timer will always be canceled
|
||||
;; at that point.
|
||||
(defun artist-key-draw-continously (x y)
|
||||
"Draw current continuous shape at X,Y."
|
||||
|
|
@ -5589,7 +5589,7 @@ The event, EV, is the mouse event."
|
|||
;; of drawing mode.
|
||||
;;
|
||||
;; You should provide these functions. You might think that
|
||||
;; only you is using your type of mode, so noone will be able
|
||||
;; only you is using your type of mode, so no one will be able
|
||||
;; to switch to another operation of the same type of mode,
|
||||
;; but someone else might base a new drawing mode upon your
|
||||
;; work.
|
||||
|
|
|
|||
|
|
@ -2499,7 +2499,7 @@ scrolling the current window. Leave the new window selected."
|
|||
;; hidden by new window, scroll it to just below new win
|
||||
;; otherwise set top line of other win so it doesn't scroll.
|
||||
(if (< oldot top) (setq top oldot))
|
||||
;; if frame is unsplitable, temporarily disable that...
|
||||
;; if frame is unsplittable, temporarily disable that...
|
||||
(if (cdr (assq 'unsplittable (frame-parameters (selected-frame))))
|
||||
(let ((frame (selected-frame)))
|
||||
(modify-frame-parameters frame '((unsplittable . nil)))
|
||||
|
|
@ -3979,7 +3979,7 @@ Both should not be used to define a buffer-local dictionary."
|
|||
; LocalWords: AMStex hspace includeonly nocite epsfig displaymath eqnarray reg
|
||||
; LocalWords: minipage modeline pers dict unhighlight buf grep sync prev inc
|
||||
; LocalWords: fn oldot NB AIX msg init read's bufs pt cmd Quinlan eg
|
||||
; LocalWords: uuencoded unidiff sc nn VM SGML eval IspellPersDict unsplitable
|
||||
; LocalWords: uuencoded unidiff sc nn VM SGML eval IspellPersDict
|
||||
; LocalWords: lns XEmacs HTML casechars Multibyte
|
||||
|
||||
;;; ispell.el ends here
|
||||
|
|
|
|||
|
|
@ -212,7 +212,7 @@ to the functions `reftex-view-cr-cite' and `reftex-view-cr-ref'."
|
|||
(add-hook 'pre-command-hook 'reftex-highlight-shall-die)
|
||||
|
||||
(when (eq how 'tmp-window)
|
||||
;; Resize window and arrange restauration
|
||||
;; Resize window and arrange restoration
|
||||
(shrink-window (1- (- (window-height) 9)))
|
||||
(recenter '(4))
|
||||
(add-hook 'pre-command-hook 'reftex-restore-window-conf))
|
||||
|
|
|
|||
|
|
@ -4293,7 +4293,7 @@ cache buffer into the designated cell in the table buffer."
|
|||
(car (table--get-coordinate (cdr (table--horizontal-cell-list nil t))))
|
||||
(1+ (cdr (table--get-coordinate (cdr (table--vertical-cell-list nil t))))))))
|
||||
|
||||
(defun table-call-interactively (function &optional recoard-flag keys)
|
||||
(defun table-call-interactively (function &optional record-flag keys)
|
||||
"Call FUNCTION, or a table version of it if applicable.
|
||||
See `call-interactively' for full description of the arguments."
|
||||
(let ((table-func (intern-soft (format "*table--cell-%s" function))))
|
||||
|
|
@ -4301,7 +4301,7 @@ See `call-interactively' for full description of the arguments."
|
|||
(if (and table-func
|
||||
(table--point-in-cell-p))
|
||||
table-func
|
||||
function) recoard-flag keys)))
|
||||
function) record-flag keys)))
|
||||
|
||||
(defun table-funcall (function &rest arguments)
|
||||
"Call FUNCTION, or a table version of it if applicable.
|
||||
|
|
|
|||
|
|
@ -2088,11 +2088,11 @@ This command is executed when texinfmt sees @item inside @multitable."
|
|||
(table-entry-height 0)
|
||||
;; unformatted row looks like: A1 @tab A2 @tab A3
|
||||
;; extract-row command deletes the source line in the table.
|
||||
(unformated-row (texinfo-multitable-extract-row)))
|
||||
(unformatted-row (texinfo-multitable-extract-row)))
|
||||
;; Use a temporary buffer
|
||||
(set-buffer (get-buffer-create texinfo-multitable-buffer-name))
|
||||
(delete-region (point-min) (point-max))
|
||||
(insert unformated-row)
|
||||
(insert unformatted-row)
|
||||
(goto-char (point-min))
|
||||
;; 1. Check for correct number of @tab in line.
|
||||
(let ((tab-number 1)) ; one @tab between two columns
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue