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
83d0d484
Commit
83d0d484
authored
Jul 28, 2006
by
Troels Henriksen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unbreak `goto-location'.
parent
b105b076
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lisp-syntax.lisp
lisp-syntax.lisp
+4
-2
No files found.
lisp-syntax.lisp
View file @
83d0d484
...
...
@@ -3043,7 +3043,8 @@ Each newline and following whitespace is replaced by a single space."
(
beep
)
(
return-from
goto-location
))
(
switch-to-buffer
buffer
)
(
goto-position
(
source-position
location
))))
(
goto-position
(
point
(
current-window
))
(
char-position
(
source-position
location
)))))
(
defmethod
goto-location
((
location
file-location
))
(
let
((
buffer
(
find
(
file-name
location
)
...
...
@@ -3055,7 +3056,8 @@ Each newline and following whitespace is replaced by a single space."
(
if
buffer
(
switch-to-buffer
buffer
)
(
climacs-commands::find-file
(
file-name
location
)))
(
goto-position
(
source-position
location
))))
(
goto-position
(
point
(
current-window
))
(
char-position
(
source-position
location
)))))
;;; Macroexpansion and evaluation
...
...
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