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
C
climacs
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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
climacs
climacs
Commits
df3f57ab
Commit
df3f57ab
authored
Aug 31, 2006
by
Troels Henriksen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed updating-output bug and added simplistic handling of long lines
(a band-aid, really).
parent
8122dfae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
8 deletions
+5
-8
pane.lisp
pane.lisp
+5
-8
No files found.
pane.lisp
View file @
df3f57ab
...
...
@@ -368,7 +368,7 @@ is made to alter a buffer which has been set read only."))
(
updating-output
(
pane
:unique-id
(
incf
id
)
:id-test
#'
=
:cache-value
contents
:cache-test
#'
string=
)
:cache-test
#'
equal
)
(
present-contents
contents
pane
)))
(
setf
saved-index
nil
))))
(
with-slots
(
bot
scan
cursor-x
cursor-y
)
pane
...
...
@@ -561,11 +561,8 @@ is made to alter a buffer which has been set read only."))
(
defgeneric
fix-pane-viewport
(
pane
))
(
defmethod
fix-pane-viewport
((
pane
climacs-pane
))
(
let*
((
v
(
window-viewport
pane
))
(
x
(
rectangle-width
v
))
(
y
(
rectangle-height
v
)))
(
resize-sheet
pane
x
y
)
(
setf
(
window-viewport-position
pane
)
(
values
0
0
))))
(
setf
(
window-viewport-position
pane
)
(
values
0
0
))
(
change-space-requirements
pane
:min-width
(
bounding-rectangle-width
(
stream-current-output-record
pane
))))
(
defmethod
redisplay-pane-with-syntax
((
pane
climacs-pane
)
(
syntax
basic-syntax
)
current-p
)
...
...
@@ -582,9 +579,9 @@ is made to alter a buffer which has been set read only."))
(
setf
(
full-redisplay-p
pane
)
nil
))
(
adjust-cache
pane
))
(
fill-cache
pane
)
(
fix-pane-viewport
pane
)
(
update-syntax-for-display
(
buffer
pane
)
(
syntax
(
buffer
pane
))
(
top
pane
)
(
bot
pane
))
(
redisplay-pane-with-syntax
pane
(
syntax
(
buffer
pane
))
current-p
))
(
redisplay-pane-with-syntax
pane
(
syntax
(
buffer
pane
))
current-p
)
(
fix-pane-viewport
pane
))
(
defgeneric
full-redisplay
(
pane
))
...
...
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