As previously noted, each position object has two components; one number defining the column, the other defining the line that the position represents. These components can be accessed individually.
(pos-col (pos 1 2))
=> 1
(setq x (pos 1 2))
=> #<pos 1 2>
(set-pos-col x 3)
=> 3
x
=> #<pos 3 2>
set-pos-col except the line number is modified.
Go to the first, previous, next, last section, table of contents.