Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
lyskom-elisp-client
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
lyskom-elisp-client
lyskom-elisp-client
Commits
682c2849
Commit
682c2849
authored
Dec 31, 2000
by
David Byers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for lockups with async messages in own buffer.
Fix for kom-move-text. Workaround for Emacs 21.0.94
parent
681d640a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
8 deletions
+30
-8
src/ChangeLog
src/ChangeLog
+17
-0
src/buffers.el
src/buffers.el
+3
-2
src/commands1.el
src/commands1.el
+1
-1
src/lyskom-rest.el
src/lyskom-rest.el
+9
-5
No files found.
src/ChangeLog
View file @
682c2849
2000-12-22 David Byers <davby@ida.liu.se>
* lyskom-rest.el (kom-page-next-command): Added (temporary)
workaround for emacs-21.0.94.
(kom-view): Same here.
2000-12-15 David Byers <davby@ida.liu.se>
* buffers.el (lyskom-display-buffer): Fixed problem with
displaying windows in iconified frames. This could cause Emacs to
lock up. Maybe.
2000-12-12 David Byers <davby@ida.liu.se>
* commands1.el (kom-move-text): Default recipient of kom-move-text
is finally correct.
2000-12-29 Ulrik Haugen <qha@lysator.liu.se>
* lyskom-rest.el (j-or-n-p lyskom-j-or-n-p): Rmoved the parameter
...
...
src/buffers.el
View file @
682c2849
...
...
@@ -446,7 +446,8 @@ Returns the window displaying BUFFER."
;;
(
while
windows
(
cond
((
eq
(
frame-visible-p
(
window-frame
(
car
windows
)))
'icon
)
(
cond
((
not
(
frame-live-p
(
window-frame
(
car
windows
)))))
((
eq
(
frame-visible-p
(
window-frame
(
car
windows
)))
'icon
)
(
setq
iconified-frame
(
car
windows
)))
((
frame-visible-p
(
window-frame
(
car
windows
)))
(
setq
visible-frame
(
car
windows
))
...
...
@@ -460,7 +461,7 @@ Returns the window displaying BUFFER."
(
cond
(
visible-frame
(
select-window
visible-frame
)
visible-frame
)
(
iconified-frame
(
make-frame-visible
iconified-frame
)
(
iconified-frame
(
make-frame-visible
(
window-frame
iconified-frame
)
)
(
select-window
iconified-frame
)
iconified-frame
)
...
...
src/commands1.el
View file @
682c2849
...
...
@@ -3313,7 +3313,7 @@ The value of RECIPIENTS should be the result of a call to
'
(
all
)
nil
(
cons
(
if
default-to
(
conf-stat->name
default-
from
)
(
conf-stat->name
default-
to
)
""
)
0
)
t
)))
(
when
(
and
source
target
)
...
...
src/lyskom-rest.el
View file @
682c2849
...
...
@@ -195,8 +195,10 @@ If the optional argument REFETCH is non-nil, all caches are cleared and
(
progn
(
goto-char
(
point-max
))
(
recenter
0
)
(
sit-for
0
)
; FIXME: emacs-21.0.94 workaround
(
lyskom-next-command
))
(
recenter
0
)
(
sit-for
0
)
; FIXME: emacs-21.0.94 workaround
(
move-to-window-line
-1
)
(
lyskom-set-last-viewed
)))
...
...
@@ -310,9 +312,11 @@ If the optional argument REFETCH is non-nil, all caches are cleared and
(
setq
text-no
(
lyskom-read-text-no-prefix-arg
'review-text-q
)))
(
cond
(
text-no
(
if
(
or
(
not
(
listp
kom-page-before-command
))
(
memq
'kom-view
kom-page-before-command
))
(
recenter
1
))
(
when
(
or
(
not
(
listp
kom-page-before-command
))
(
memq
'kom-view
kom-page-before-command
))
(
recenter
1
)
(
sit-for
0
)
; FIXME: emacs-21.0.94 workaround
)
(
lyskom-tell-internat
'kom-tell-review
)
(
lyskom-format-insert
'review-text-no
text-no
)
(
lyskom-view-text
text-no
))
...
...
@@ -882,8 +886,8 @@ is not on screen then doesn't move point."
(
let
((
window
(
get-buffer-window
(
current-buffer
))))
(
if
(
and
window
was-at-max
)
(
if
(
pos-visible-in-window-p
(
point-max
)
window
)
(
goto-char
(
point-max
))
(
and
kom-continuous-scrolling
(
lyskom-scroll
)))))))
(
goto-char
(
point-max
))
(
and
kom-continuous-scrolling
(
lyskom-scroll
)))))))
...
...
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